
.cic-form {
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', sans-serif;
    max-width: 600px;
    margin: 20px auto;
}
.cic-form h3 { text-align: center; color: #00695c; }
.cic-form label { margin-top: 10px; display: block; font-weight: bold; }
.cic-form input, .cic-form select {
    width: 100%;
    padding: 8px;
    margin-bottom: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
}
.cic-form input[type="submit"] {
    background: #00695c;
    color: white;
    border: none;
    cursor: pointer;
}
.cic-form input[type="submit"]:hover {
    background: #004d40;
}
.cic-result {
    margin-top: 20px;
    background: #f1f8e9;
    padding: 15px;
    border-left: 5px solid #7cb342;
    border-radius: 10px;
}
