.login-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("../img/templates/background_placeholder.png") center / cover no-repeat;
}
.login-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}
.login-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #303a4d;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group input[type="password"] {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e4eb;
    border-radius: 30px;
    font-size: 1.1rem;
    transition: all 0.3s;
}
.form-group input[type="password"]:focus {
    border-color: #303a4d;
    outline: none;
}
.login-button {
    width: 100%;
    padding: 1rem;
    background-color: #303a4d;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.login-button:hover {
    background-color: #1a1f2a;
    transform: translateY(-2px);
}
.error {
    color: #ff4444;
    margin-bottom: 1.5rem;
    font-weight: 500;
}