* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: #fff;
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 20px 16px;
    gap: 0;
}

/* ── Banner ── */
.banner {
    width: 100%;
    max-width: 400px;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    border-radius: 14px;
    padding: 16px 20px;
    text-align: center;
    margin-bottom: 12px;
    animation: glow 2.5s ease-in-out infinite;
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(131, 58, 180, 0.45);
    }

    50% {
        box-shadow: 0 8px 32px rgba(253, 29, 29, 0.55);
    }
}

.banner-label {
    font-size: 10.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.banner-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.2px;
}

.banner-title span {
    font-size: 24px;
    margin-right: 4px;
}

.banner-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.82);
    margin-top: 5px;
}

/* ── Card ── */
.container {
    width: 100%;
    max-width: 400px;
    padding: 36px 24px 32px;
}

.logo {
    font-family: 'Grand Hotel', cursive;
    font-size: 52px;
    text-align: center;
    color: #262626;
    margin-bottom: 28px;
}

/* ── Inputs ── */
.form-group {
    margin-bottom: 10px;
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #dbdbdb;
    border-radius: 8px;
    font-size: 15px;
    background: #fafafa;
    color: #262626;
    outline: none;
    transition: border-color 0.2s;
    font-family: 'Roboto', sans-serif;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input::placeholder {
    color: #aaa;
    font-size: 14px;
}

.form-group input:focus {
    border-color: #a8a8a8;
    background: #fff;
}

.password-wrapper input {
    padding-right: 50px;
}

.toggle-password {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    padding: 4px;
    display: flex;
    align-items: center;
}

.toggle-password svg {
    width: 22px;
    height: 22px;
}

/* ── Error ── */
#login-error {
    color: #e44d3a;
    font-size: 12.5px;
    text-align: center;
    margin-top: 6px;
    min-height: 18px;
}

/* ── Submit ── */
.SubmitButton {
    width: 100%;
    padding: 13px;
    background: #4CB5F9;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s, opacity 0.2s;
    letter-spacing: 0.3px;
    font-family: 'Roboto', sans-serif;
    -webkit-appearance: none;
    appearance: none;
}

.SubmitButton:active:not(:disabled) {
    background: #2196f3;
}

.SubmitButton:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* ── Forgot ── */
.forgot-link {
    text-align: center;
    font-size: 13px;
    color: #555;
    margin-top: 18px;
    line-height: 1.5;
}

.forgot-link a {
    color: #262626;
    font-weight: 600;
    text-decoration: none;
}

/* ── Sign up ── */
.signup-text {
    text-align: center;
    font-size: 13.5px;
    color: #666;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #efefef;
}

.signup-text a {
    color: #385185;
    font-weight: 700;
    text-decoration: none;
}

/* ── Desktop ── */
@media (min-width: 480px) {
    body {
        background-color: #fafafa;
    }

    .container {
        border: 1px solid #dbdbdb;
        border-radius: 12px;
        background: #fff;
    }
}