.login-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    background-color: #e6e5e5;
}

.login-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.login-container h1 {
    margin-bottom: 20px;
    font-size: 32px;
    color: #333;
}

.login-container p {
    color: #777;
    margin-bottom: 30px;
}

.input-field {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background-color: #00AFEF;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: #112942;
}

.copyright{
    margin: 10px 0;
    color: gray;
}

.copyright a{
    color: #000;
}

.footer {
    margin-top: 20px;
    font-size: 14px;
    color: #888;
}

@media (max-width: 600px) {
    .login-container {
        padding: 20px;
        max-width: 90%;
    }

    .login-container h1 {
        font-size: 28px;
    }

    .input-field {
        font-size: 14px;
    }

    .login-btn {
        font-size: 14px;
    }
}

.logo {
    width: 100px;
    margin-bottom: 20px;
}

.error{
    font-size: 20px;
    color: red;
    padding: 10px 0;
}

.lang-container{
    position: absolute;
    margin: 15px;
    right: 0;
}

option{
    background-size: 20px;
    background-position: left center;
    background-repeat: no-repeat;
}

select {
    padding: 10px 10px 10px 10px;
    font-size: 16px;
    cursor: pointer;
    border: 2px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    background-position: 10px center;
    background-repeat: no-repeat;
    background-size: 20px;
    appearance: none; 
}

select:focus {
    outline: none;
    border-color: #0056b3;
}

select option {
    padding-left: 30px;
}