/* Sign Up Page - Minimal Styles */
.auth-page {
    min-height: 100vh;
    min-height: -webkit-fill-available;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    padding-top: calc(2rem + env(safe-area-inset-top));
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
}

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

.auth-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 2.5rem;
}

.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.auth-logo-img {
    height: 50px;
    width: auto;
}

.auth-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-header h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: #666;
    font-size: 0.9rem;
}

/* Social Login */
.social-login {
    margin-bottom: 1.25rem;
}

.google-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #222;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.google-btn:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

/* Divider */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.25rem 0;
    color: #999;
    font-size: 0.8rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

/* Form */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #444;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #222;
    font-size: 0.95rem;
}

.form-group input:focus {
    outline: none;
    border-color: #c9973f;
}

.password-field {
    position: relative;
}

.password-field input {
    padding-right: 2.5rem;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.25rem;
}

.password-toggle:hover {
    color: #c9973f;
}

/* Password Requirements */
.password-requirements {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.25rem;
}

.password-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
}

.password-requirements li {
    padding: 0.15rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.password-requirements li::before {
    content: '○';
    position: absolute;
    left: 0;
    color: #999;
}

.password-requirements li.met::before {
    content: '✓';
    color: #10b981;
}

/* Terms */
.terms-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #666;
}

.terms-group input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    accent-color: #c9973f;
    margin-top: 0.15rem;
}

.terms-group a {
    color: #c9973f;
    text-decoration: none;
}

.terms-group a:hover {
    text-decoration: underline;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 0.75rem;
    background: #c9973f;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background: #b8862e;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Error Message */
.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    padding: 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    display: none;
}

/* Success Message */
.success-message {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    padding: 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    display: none;
}

/* Footer */
.auth-footer {
    text-align: center;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e0e0e0;
    color: #666;
    font-size: 0.85rem;
}

.auth-footer a {
    color: #c9973f;
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Back Link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1rem;
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
}

.back-link:hover {
    color: #c9973f;
}

.back-link svg {
    width: 14px;
    height: 14px;
}

/* Mobile */
@media (max-width: 640px) {
    .auth-page {
        padding: 1rem;
        padding-top: calc(1rem + env(safe-area-inset-top));
        padding-bottom: calc(1rem + env(safe-area-inset-bottom));
    }
    .auth-card {
        padding: 1.5rem;
    }
    .auth-header h1 {
        font-size: 1.25rem;
    }
    .form-group input {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Hide particle bloat */
.particles, .particle {
    display: none !important;
}

/* Features Preview */
.features-preview {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: #666;
}

.feature-badge svg {
    width: 14px;
    height: 14px;
    color: #c9973f;
}
