body .ress-login {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    padding: 24px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #111827;
}

.ress-login__card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.ress-login__logo {
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #2563eb;
    margin-bottom: 8px;
}

.ress-login__logo img {
    max-width: 180px;
    max-height: 60px;
    height: auto;
    object-fit: contain;
}

.ress-login__card h1 {
    margin: 0 0 16px;
    font-size: 22px;
}

.ress-login__card label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-weight: 600;
    margin-bottom: 12px;
}

.ress-login__card input[type="email"],
.ress-login__card input[type="password"] {
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 12px;
    font-size: 15px;
}

.ress-login__password {
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 0 8px 0 0;
}

.ress-login__password input {
    border: none;
    flex: 1;
    padding: 12px;
    outline: none;
}

.ress-login__password .toggle-password {
    border: none;
    background: none;
    cursor: pointer;
    padding: 8px;
    font-size: 14px;
}

.ress-login__checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    margin: 8px 0 12px;
}

.ress-login__submit {
    width: 100%;
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.2);
    margin-bottom: 12px;
}

.ress-login__links {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.ress-login__links a {
    color: #2563eb;
    text-decoration: none;
}

.ress-login__error {
    background: #fef2f2;
    border: 1px solid #fecdd3;
    color: #b91c1c;
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 12px;
}

@media (max-width: 520px) {
    .ress-login__card {
        padding: 18px;
    }

    .ress-login__links {
        flex-direction: column;
        gap: 6px;
    }
}
