body.auth-body {
    font-family: 'Pretendard', sans-serif;
    background-color: #f3f4f6;
}

.screen {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.screen.active {
    display: flex;
    flex-direction: column;
}

.gs-input:focus {
    border-color: #f59e0b;
    outline: none;
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.25);
}

.verify-spam-notice {
    margin: -1.25rem 0 1rem;
    color: #f59e0b;
    font-size: 0.875rem;
    line-height: 1.45;
    font-weight: 900;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .app-header,
    .app-contents,
    .app-footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
