.login-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("../images/hero.png") no-repeat center center/cover;
    position: relative;
    margin: -20px 0;
}

.login-page::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(11, 11, 11, 0.8);
    backdrop-filter: blur(8px);
}

.login-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 450px;
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

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

.login-header i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.login-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.login-header p {
    color: var(--text-dim);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.form-group input {
    width: 100%;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255,255,255,0.1);
}

.w-100 {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.error-msg {
    color: #ff4d4d;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-align: center;
}
