.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 70px);
    padding: 20px;
}

.login-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 400px;
}

.login-card h1 {
    text-align: center;
    color: #333;
    margin-bottom: 8px;
    font-size: 1.8rem;
}

.login-subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.input-group {
    margin-bottom: 15px;
}

input {
    width: 100%;
    padding: 14px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fcfcfc;
    font-size: 1rem;
    transition: 0.3s;
}

input:focus {
    border-color: #333;
    background: #fff;
    outline: none;
}

.forgot-password {
    text-align: right;
    margin-bottom: 20px;
}

.forgot-password a {
    font-size: 0.85rem;
    color: #666;
    text-decoration: none;
}

.btn-login {
    width: 100%;
    padding: 14px;
    background: #333;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-login:hover {
    background: #000;
}

.login-footer {
    margin-top: 25px;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

.login-footer a {
    color: #333;
    font-weight: bold;
    text-decoration: none;
}