body {
    background: #f6f4f1;
    color: #1f1f1f;
    font-family: Arial, Helvetica, sans-serif;
}

.auth-page {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 70px;
}

.auth-wrapper {
    width: 88%;
    max-width: 1240px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
}

.auth-left {
    flex: 1;
    max-width: 520px;
}

.auth-label {
    color: #c46b36;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.auth-left h1 {
    margin: 0 0 24px;
    font-size: 5.2rem;
    line-height: 1.05;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.auth-description {
    margin: 0;
    font-size: 1.9rem;
    line-height: 1.7;
    color: #5f5a56;
}

.auth-card {
    flex: 1;
    max-width: 520px;
    background: #ffffff;
    border-radius: 28px;
    padding: 38px 34px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.auth-card h2 {
    margin: 0 0 24px;
    font-size: 3rem;
    font-weight: 700;
    color: #1f1f1f;
}

.auth-card .input {
    margin-bottom: 22px;
}

.auth-card label {
    display: block;
    margin-bottom: 10px;
    font-size: 1.7rem;
    font-weight: 600;
    color: #4a433d;
}

.auth-card input {
    width: 100%;
    height: 56px;
    border: 1.5px solid #ddd6cf;
    border-radius: 16px;
    padding: 0 16px;
    font-size: 1.6rem;
    box-shadow: none;
    background: #fff;
}

.auth-card input:focus {
    outline: none;
    border-color: #c46b36;
    box-shadow: 0 0 0 3px rgba(196, 107, 54, 0.12);
}

.auth-actions {
    margin-top: 10px;
}

.auth-primary-btn {
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #c46b36, #df8a4d);
    color: #fff;
    font-size: 1.7rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.auth-primary-btn:hover {
    opacity: 0.94;
}

.message,
.error-message {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 1.5rem;
}

.message {
    background: #fff4eb;
    color: #9a542c;
}

.error-message {
    background: #fdeeee;
    color: #b23b3b;
}

@media (max-width: 992px) {
    .auth-wrapper {
        flex-direction: column;
        gap: 34px;
    }

    .auth-left {
        max-width: 100%;
        text-align: center;
    }

    .auth-left h1 {
        font-size: 4.2rem;
    }

    .auth-card {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .auth-left h1 {
        font-size: 3.3rem;
    }

    .auth-description {
        font-size: 1.7rem;
    }

    .auth-card {
        padding: 26px 20px;
    }
}
