
/* Custom layout for the login page centering */
body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    overflow: hidden; /* Matches your body style */
    font-family: 'Poppins';
}

.login-container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.login-card {
    background: var(--sidebar); /* Using your sidebar background */
    border: 1px solid var(--border);
    border-radius: 24px; /* Matches your modal/card radius */
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

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

.login-header .logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--green); /* Using your brand green */
    margin-bottom: 12px;
}

.login-header h2 {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 8px;
}

.login-header p {
    font-size: 14px;
    color: var(--text-dim);
}

.forgot-password {
    display: block;
    text-align: right;
    font-size: 13px;
    color: var(--blue);
    text-decoration: none;
    margin-top: -10px;
    margin-bottom: 20px;
    transition: 0.2s;
}

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

.login-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-dim);
}

.login-footer a {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
}