body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.login_container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.login_form {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login_form p {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.user_pwd {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 15px;
}

.user_pwd input {
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.password-container {
    position: relative;
    width: 100%;
}

.password-container input {
    padding-right: 40px;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-bottom: 10px;
}

.password-toggle:hover {
    color: #333;
}

.remember_recover {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    font-size: 14px;
}

.remember_recover a {
    color: #0066cc;
    text-decoration: none;
}

.remember_recover a:hover {
    text-decoration: underline;
}

#submit-btn {
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    margin-bottom: 15px;
}

#submit-btn:hover {
    background-color: #0055aa;
}

.form-group {
    width: 100%;
    margin-top: 15px;
}

.form-group ul {
    padding-left: 20px;
    margin: 0;
}

.text-danger {
    color: #dc3545;
    font-size: 14px;
}

/* Language selector styles */
.language-selector {
    margin-bottom: 15px;
    text-align: right;
    width: 100%;
}

.language-selector select {
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #ccc;
    background-color: #fff;
    cursor: pointer;
}