@import url("https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700&display=swap");

:root {
    --orange-soft: #f7a24b;
    --orange-strong: #f07a1f;
    --orange-deep: #d85a12;
    --cream: #fff4e6;
    --text-dark: #2f1c0e;
    --panel: #fffaf4;
}

* {
    box-sizing: border-box;
}

body {

    font-family: "Sora", "Trebuchet MS", sans-serif;
    color: var(--text-dark);
    background: radial-gradient(circle at 10% 5%, #fff2e4 0%, #fff7ef 38%, #fffdf9 100%);
}

.login-page {
    max-width: 580px;
    margin: 0 auto;
    padding: 78px 20px 80px;
}

.login-brand-top {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.login-brand-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.login-shell {
    display: block;
}

.login-copy {
    background: linear-gradient(145deg, #fff7ee 0%, #ffe7ca 100%);
    border: 1px solid #ffd4a6;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 22px 42px rgba(240, 122, 31, 0.17);
}

.login-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    background: var(--orange-strong);
}

.login-copy h1 {
    margin: 0 0 14px;
    line-height: 1.12;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.login-copy p {
    margin: 0;
    line-height: 1.7;
    opacity: 0.9;
}

.benefit-list {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.benefit-list i {
    color: var(--orange-deep);
}

.login-card {
    background: var(--panel);
    border: 1px solid #ffd8af;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 22px 42px rgba(240, 122, 31, 0.15);
}

.login-card h2 {
    margin: 0 0 6px;
    text-align: center;
}

.login-card .subtitle {
    margin: 0 0 20px;
    font-size: 14px;
    opacity: 0.78;
    text-align: center;
}

.form-field {
    margin-bottom: 14px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.form-field input {
    width: 100%;
    border: 1px solid #ffd1a1;
    border-radius: 12px;
    padding: 12px 13px;
    font: inherit;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus {
    outline: none;
    border-color: var(--orange-strong);
    box-shadow: 0 0 0 4px rgba(240, 122, 31, 0.14);
}

.form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin: 6px 0 16px;
}

.remember {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.remember input {
    accent-color: var(--orange-strong);
}

.link-muted {
    color: var(--orange-deep);
    font-weight: 600;
    text-decoration: none;
}

.link-muted:hover {
    text-decoration: underline;
}

.login-submit {
    width: 100%;
    border: 0;
    border-radius: 999px;
    background: var(--orange-strong);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 14px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(240, 122, 31, 0.28);
    transition: transform 0.2s ease, background 0.2s ease;
}

.login-submit:hover {
    transform: translateY(-1px);
    background: var(--orange-deep);
}

.login-alt {
    margin-top: 16px;
    text-align: center;
    font-size: 14px;
}

.login-alt a {
    color: var(--orange-deep);
    font-weight: 700;
    text-decoration: none;
}

.login-alt a:hover {
    text-decoration: underline;
}

.msg-ok {
    background: #eaf9ef;
    color: #1f6d3b;
    border: 1px solid #bfe7cb;
    border-radius: 12px;
    padding: 10px 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

@media (max-width: 900px) {
    .login-page {
        padding: 62px 14px 72px;
    }

    .login-brand-logo {
        width: 56px;
        height: 56px;
    }

    .login-card {
        padding: 22px;
    }
}