/* Registration Page Styles */
.registration-page-container {
    padding: 60px 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f7f6;
}

.registration-header {
    text-align: center;
    margin-bottom: 40px;
}

.registration-header h3 {
    font-size: 2.5rem;
    color: #2272bc;
    font-weight: 700;
    margin-bottom: 10px;
}

.registration-header p {
    font-size: 1.2rem;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.registration-header i {
    color: #2272bc;
}

.registration-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

.registration-form-container h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.form-control:focus {
    border-color: #2272bc;
    box-shadow: 0 0 0 3px rgba(34, 114, 188, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: #aaa;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 5px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: #2272bc;
}

.radio-option label {
    margin: 0;
    font-weight: 400;
    cursor: pointer;
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #2272bc;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 30px;
}

.btn-submit:hover {
    background-color: #1a5a96;
    transform: translateY(-2px);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Custom Select Styling Override */
.select {
    border: none;
    background: none;
    height: auto;
}

.select select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    color: #333;
    background-color: #fff;
    height: auto;
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
    appearance: menulist;
}

@media (max-width: 768px) {
    .registration-form-container {
        padding: 25px;
    }

    .registration-header h3 {
        font-size: 2rem;
    }
}