@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    background: linear-gradient(135deg, #320d38, #431555);
    color: #fff;
    font-family: "Poppins", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 0.9rem;
}
/* Logos Styling */
.logo {
    max-height: 110px;
    margin: 0 15px;
}
.form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 30px;
    margin-top: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.form-control {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
}
.form-control:focus {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: none;
    border: 1px solid #fff;
}
.form-label {
    font-weight: 300;
}
.btn-submit {
    background: #ff6f61;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
}
.btn-submit:hover {
    background: #ff3b2f;
    transform: translateY(-2px);
}
.form-icon {
    font-size: 24px;
    margin-right: 10px;
}

/* Ensure selected text is black */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000 !important; /* Force black text */
}

/* Ensure dropdown options text is black */
.select2-container--default .select2-results__option {
    color: #000 !important; /* Force black text */
}

/* Ensure selected option remains black */
.select2-container--default .select2-selection--single {
    color: #000 !important;
}

/* Ensure placeholder text is gray */
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #6c757d !important; /* Light gray */
}
