.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    background: var(--bg-primary);
}

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

.auth-card {
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-primary);
    padding: 3rem;
    animation: slideIn 0.4s ease-out;
}

.register-card {
    max-width: 600px;
}

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

.auth-header .logo {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.auth-header h2 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.auth-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.info-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: -10px 0 15px 0;
    padding-left: 5px;
}

/* File Input Custom */
.file-input-wrapper {
    position: relative;
}

.file-input-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-input-label {
    display: block;
    padding: 12px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-secondary);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.file-input-label:hover {
    background: var(--bg-elevated);
    border-color: var(--border-hover);
}

#fileInputText {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Profile Picture Section */
.profile-picture-section {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-primary);
}

.current-picture {
    display: inline-block;
}

.avatar-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-secondary);
    transition: border-color 0.2s;
}

.avatar-large:hover {
    border-color: var(--border-hover);
}

/* Privacy Section */
.privacy-section {
    background: var(--bg-tertiary);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border: 1px solid var(--border-primary);
}

.privacy-section h3 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Terms Section */
.terms-section {
    background: var(--bg-tertiary);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border: 1px solid var(--border-primary);
}

.checkbox-group {
    margin: 0.75rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.2s;
}

.checkbox-label:hover {
    background: var(--bg-elevated);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--text-primary);
    border: 1px solid var(--border-secondary);
    flex-shrink: 0;
}

.checkbox-label span {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label span a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.2s ease;
    border-bottom: 2px solid var(--text-primary);
    padding-bottom: 1px;
}

.checkbox-label span a:hover {
    color: var(--text-primary);
    opacity: 0.8;
    border-bottom-color: transparent;
}

/* Button Group */
.button-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .auth-card {
        padding: 2rem 1.5rem;
    }

    .auth-header h2 {
        font-size: 1.5rem;
    }

    .register-card {
        padding: 2rem 1.5rem;
    }

    .avatar-large {
        width: 100px;
        height: 100px;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
