.auth-body {
    margin: 0;
    background: #f8f7f4;
    color: #1f1f1f;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

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

.auth-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e4e1da;
    box-shadow: 0 18px 40px rgba(31, 31, 31, 0.12);
    padding: 32px;
}

.auth-header {
    text-align: center;
    margin-bottom: 24px;
}

.auth-logo {
    width: 160px;
    height: auto;
    margin-bottom: 12px;
}

.auth-header h1 {
    margin: 0 0 8px;
}

.auth-header p {
    margin: 0;
    color: #5a5a5a;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.auth-field span {
    font-weight: 600;
}

.auth-field input {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border-radius: 12px;
    border: 1px solid #e4e1da;
    font-size: 1rem;
}

.auth-field input:focus {
    outline: 2px solid rgba(244, 211, 22, 0.4);
    border-color: #f4d316;
}

.auth-icon {
    position: absolute;
    left: 12px;
    top: 46px;
    color: #5a5a5a;
}

.auth-icon-large {
    font-size: 36px;
    color: #f4d316;
    margin-bottom: 12px;
}

.auth-submit {
    width: 100%;
    justify-content: center;
}

.auth-note {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #ffffff;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid #e4e1da;
    font-size: 0.85rem;
}
