/* Login page styles */
body {
    background: linear-gradient(135deg, #086ad4 0%, #3484db 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.login-container {
    background: #ebebeb;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(10px);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h2 {
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.login-header p {
    color: #666;
    margin-bottom: 0;
}

.form-control {
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #086ad4;
    box-shadow: 0 0 0 0.2rem rgba(8, 106, 212, 0.25);
}

.btn-login {
    background: linear-gradient(135deg, #086ad4 0%, #3484db 100%);
    border: none;
    color: white;
    border-radius: 10px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(8, 106, 212, 0.4);
    color: white;
}

.forgot-password-link {
    text-align: center;
    margin-top: 15px;
}

.forgot-password-link a {
    color: #086ad4;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.forgot-password-link a:hover {
    text-decoration: underline;
}
