body {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 50%, #229954 100%);
    min-height: 100vh;
    font-family: 'Roboto', 'Tahoma', sans-serif;
    padding: 40px 20px;
}

.registration-container {
    max-width: 580px;
    width: 100%;
    margin: 0 auto;
}

.registration-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 50px 45px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 1px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.registration-title {
    color: #27ae60;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    font-size: 28px;
    letter-spacing: -0.5px;
}

.registration-subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 35px;
    font-size: 15px;
}

.form-label {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.form-control {
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-control:focus {
    border-color: #27ae60;
    box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.1);
    background-color: #ffffff;
    outline: none;
}

.form-control:hover {
    border-color: #d0d0d0;
}

.form-check {
    padding: 12px 0;
    padding-left: 1.5em !important;
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    border: 2px solid #bdc3c7;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #27ae60;
    border-color: #27ae60;
}

.form-check-input:focus {
    box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.1);
}

.form-check-label {
    margin-left: 8px;
    cursor: pointer;
    font-size: 15px;
    color: #2c3e50;
}

.btn-submit {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    border: none;
    color: #ffffff;
    font-weight: 600;
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 16px;
    width: 100%;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
    transform: translateY(-2px);
}

#conditionalFields {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #ecf0f1;
}

.required-indicator {
    color: #e74c3c;
    font-weight: 700;
}


/*Thank you page*/
.thankyou-container {
    max-width: 580px;
    width: 100%;
    margin: 0 auto;
}

.thankyou-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 60px 45px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 1px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

    .success-icon svg {
        width: 45px;
        height: 45px;
        stroke: #ffffff;
        stroke-width: 3;
        fill: none;
    }

.thankyou-title {
    color: #27ae60;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 32px;
    letter-spacing: -0.5px;
}

.thankyou-message {
    color: #2c3e50;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.thankyou-details {
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.6;
}

.btn-home {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    border: none;
    color: #ffffff;
    font-weight: 600;
    padding: 14px 40px;
    border-radius: 10px;
    font-size: 15px;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

    .btn-home:hover {
        background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
        box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
        transform: translateY(-2px);
        color: #ffffff;
    }
