body {
    
  font-family: 'Outfit';
    background: 
        linear-gradient(to bottom, rgba(8, 27, 79, 0.8), rgba(0, 0, 0, 0.8)), /* Gradient with opacity */
        url('/stylesheets/design_images/image.png'); /* Background image  filter: blur(2px); */
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    backdrop-filter: blur(2px);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    margin: 0;
    position: relative;
}



.login-container {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(21, 84, 255, 0.2)); /* Gradient with opacity */

    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 450px;
    max-width: 100%;
        box-sizing: border-box;

}

.login-container a{
    
    color: white;
}

.logo-container {
    display: flex;
    margin-bottom: 20px;
}

.logo-container img {
    max-width: 150px;
    height: auto;
}

.login-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    color: #fff;
}

.login-form h2 {
    margin-bottom: 20px;
    color: #fff;
}




.input-group {
            position: relative;
            width: 100%;
                margin-bottom: 20px;

            
        }

        .input-group input {
            width: 100%;
            padding: 10px;
            padding-right: 40px; /* Space for the icon */
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
            background-color: transparent;
               box-sizing: border-box;
               color: white;
               outline: none;
        }

        .input-group input:focus {
    background-color: transparent; /* Keep the background transparent on focus */
    border-color: #fff; /* Optional: change border color when focused */
}


.input-group input::placeholder {
    color: white /* Placeholder color */
}
        .input-group .icon {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: #fff;
            /* Prevent interaction with the icon */
        }


button {
    background-color: #1554FF;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
        width: 100%; /* Ensure button fills the container */

}

button:hover {
    background-color: #333;
}
.language_container {
    position: relative;
    display: flex;
    align-items: center;
    width: 120px;
    border: 1px solid white;
     border-radius: 20px;
     padding: 5px;
}

.flag-icon {
    width: 24px;
    height: 18px;
    margin-right: 4px;
}

.language_login {
    width: 100%;
    height: 30px;
    font-weight: 500;
    background-color: transparent;
    color: white;
    border: none;
    font-size: 14px;
    padding-left: 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.language_login option{

    background-color: transparent;
    color: #000;
}

/* Custom dropdown arrow */
.language_container::after {
    content: '▼';
    font-size: 10px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    pointer-events: none;
}


