/* ============================================================
   login.css — login page specific styles
   ============================================================ */

body {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    max-width: 400px;
    width: 100%;
}

h1 {
    margin-bottom: 10px;
}

.subtitle {
    color: var(--green-muted);
    text-align: center;
    margin-bottom: 30px;
    font-size: 14px;
}

.footer {
    text-align: center;
    margin-top: 30px;
    color: var(--green-muted);
    font-size: 14px;
}

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

.footer a:hover {
    text-decoration: underline;
}

.password-wrapper {
    position: relative;
}

.password-wrapper input[type="password"],
.password-wrapper input[type="text"] {
    width: 100%;
    box-sizing: border-box;
    padding-right: 42px;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--green-muted);
    padding: 0;
    width: auto;
    display: flex;
    align-items: center;
}

.toggle-password:hover {
    color: var(--green-mid);
}
