* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f8fafc;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

/* TOS Header Styles */
.tos-header {
    background-color: #ffffff;
    border-bottom: 1px solid #f5f5f5;
    padding: 0 16px;
    position: relative;
    box-sizing: border-box;
    width: 100%;
}

.header-content {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    padding: 16px 0;
    position: relative;
    width: 100%;
    height: 35px;
}

.back-arrow-container {
    height: 35px;
    position: relative;
    width: 16px;
    flex-shrink: 0;
}

.back-arrow-link {
    position: absolute;
    bottom: 0;
    left: -8.51%;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000000;
    transition: opacity 0.2s ease;
}

.back-arrow-link:hover {
    opacity: 0.7;
}

.back-arrow-link svg {
    display: block;
    max-width: none;
    width: 100%;
    height: 100%;
}

.header-title-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 9px;
}

.header-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #000000;
    line-height: normal;
    white-space: nowrap;
    margin: 0;
    text-align: center;
}

/* TOS Content Styles */
.tos-content {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    width: 100%;
    height: 100%;
}

.top-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 16px;
}

.logo-profile-row {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    position: relative;
    width: 100%;
}

.logo-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    flex-shrink: 0;
}

.logo-image {
    background-repeat: no-repeat;
    background-size: 99.9% 100%;
    background-position: top left;
    height: 23.381px;
    width: 143px;
    flex-shrink: 0;
}

.logo-image img {
    display: block;
    max-width: none;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.profile-container {
    position: relative;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.profile-image {
    width: 100%;
    height: 100%;
}

.profile-image img {
    display: block;
    max-width: none;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.search-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-box {
    background-color: #f5f5f5;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 10px;
    height: 40px;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
    position: relative;
    border-radius: 10px;
    width: 100%;
    flex-shrink: 0;
}

.search-icon {
    position: relative;
    width: 14.5px;
    height: 14.5px;
    flex-shrink: 0;
}

.search-icon svg {
    display: block;
    max-width: none;
    width: 100%;
    height: 100%;
}

.search-input {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #000000;
    line-height: 1.5;
    position: relative;
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    padding: 0;
}

.search-input::placeholder {
    color: #979797;
    font-weight: 400;
}

/* TOS Main Content Styles */
.tos-main-content {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    width: 100%;
}

.tos-main-section {
    background-color: #ffffff;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 10px 16px;
    position: relative;
    width: 100%;
}

/* Title Section */
.tos-title-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

.main-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #000000;
    line-height: 1.5;
    letter-spacing: 0.4px;
    margin: 0;
    text-align: left;
}

.update-date-row {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #4c4c4c;
    line-height: 1.5;
}

.update-label,
.update-date {
    white-space: nowrap;
}

.welcome-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #4c4c4c;
    line-height: 1.5;
}

.welcome-text {
    font-size: 14px;
    margin: 0;
    white-space: nowrap;
}

.terms-description {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
    width: 100%;
}

.purple-link {
    color: #7227c2;
    font-weight: 400;
}

/* Section Styles */
.tos-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    position: relative;
    width: 100%;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #000000;
    line-height: 1.5;
    margin: 0;
    text-align: left;
    width: 100%;
}

/* Definition Items */
.definition-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    width: 100%;
    color: #4c4c4c;
    line-height: 1.5;
}

.definition-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin: 0;
    width: 100%;
}

.definition-title-medium {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #4c4c4c;
    margin: 0;
    width: 100%;
}

.definition-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin: 0;
    width: 100%;
}

/* Package Definition */
.package-definition {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    width: 100%;
}

.package-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    width: 100%;
}

.package-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    width: 100%;
}

.package-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #4c4c4c;
    line-height: 1.5;
    margin: 0;
    text-align: left;
    width: 100%;
}

.package-desc {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #4c4c4c;
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
    width: 100%;
}

/* Numbered Items */
.numbered-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    width: 100%;
}

.numbered-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #4c4c4c;
    line-height: 1.5;
    margin: 0;
    width: 100%;
}

/* Bullet Lists */
.bullet-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 8px;
    width: 100%;
    margin-top: 8px;
}

.bullet-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 8px;
    width: 100%;
}

.bullet-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #4c4c4c;
    line-height: 1.5;
    margin: 0;
    width: 100%;
}

/* Section Divider */
.section-divider {
    height: 0;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #f2f2f2;
    margin: 10px 0;
}

/* Back to Top */
.back-to-top-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
    border-radius: 8px;
    border: 1px solid #521891;
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.back-to-top-container:hover {
    background-color: #faf5ff;
}

.back-to-top-button {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    width: 100%;
}

.back-to-top-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #521891;
    line-height: 1.5;
    letter-spacing: 0.24px;
    margin: 0;
    text-align: left;
    white-space: nowrap;
}

/* Last Update */
.last-update-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 100%;
}

.last-update-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #9d9d9d;
    line-height: 1.5;
    letter-spacing: 0.24px;
    margin: 0;
    text-align: left;
    width: 100%;
}

/* Footer */
.tos-footer {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 20px;
    padding-top: 0;
    width: 100%;
}

.footer-content {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    width: 100%;
}

.footer-logo {
    height: 23.381px;
    width: 143px;
    background-repeat: no-repeat;
    background-size: 99.9% 100%;
    background-position: top left;
}

.footer-logo img {
    display: block;
    max-width: none;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.copyright-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 11px;
    color: #9d9d9d;
    line-height: 1.5;
    letter-spacing: 0.22px;
    margin: 0;
    text-align: center;
    width: 100%;
}

.header-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    position: static;
    transform: none;
    margin: 0;
}

/* Content Container */
.content-container {
    flex: 1;
    padding-top: 102px;
    /* Top bar height */
    padding-bottom: 100px;
    /* Bottom bar height */
    background-color: #f8fafc;
}

.content-wrapper {
    max-width: 480px;
    padding: 0 16px;
}

/* Form Sections */
.form-section {
    background-color: #ffffff;
    /* border-radius: 12px; */
    width: 100%;
    padding: 24px 20px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    /* border: 1px solid #e2e8f0; */
}

.section-header {
    margin-bottom: 24px;
    text-align: left;
}

.section-login-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 24px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
    line-height: 1.3;
}

.section-description {
    font-size: 14px;
    font-weight: 400;
    color: #64748b;
    line-height: 1.5;
}
.helper-text {
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
    line-height: 1.5;
}

.highlight {
    color: #7c3aed;
    font-weight: 600;
}

.account-section {
    width: 100%;
    margin-bottom: 32px;
}

.login-section {
    background-color: #ffffff;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    padding: 32px 20px;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: calc(100vh - 70px); /* For login forms */
}

.registration-form .login-section {
    flex: 1;
    display: flex;
    align-items: center;
}

.account-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    line-height: 1.5;
}

.label-subtitle {
    color: #6b7280;
    font-weight: 400;
}

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-button {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #6b7280;
    display: flex;
    align-items: center;
    border-radius: 4px;
    transition: color 0.2s ease;
}

.info-button:hover {
    color: #7c3aed;
}

/* Input Styles - From Register */
.form-input {
    width: 100%;
    padding: 14px 12px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #374151;
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    transition: all 0.2s ease;
    margin-bottom: 12px;
}

.form-input:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
    color: #1f2937;
}

.form-input::placeholder {
    color: #9ca3af;
}

.form-input:not(:placeholder-shown) {
    color: #1f2937;
}

/* File Upload - From Register */
.file-upload {
    position: relative;
    width: 100%;
    border: 2px dashed #d1d5db;
    border-radius: 10px;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.file-upload:hover {
    border-color: #7c3aed;
    background-color: #faf5ff;
}

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    gap: 8px;
}

.upload-icon {
    font-size: 24px;
    margin-bottom: 4px;
}

.upload-text {
    font-size: 13px;
    font-weight: 500;
    color: #7c3aed;
    line-height: 1.5;
    word-break: break-word;
    max-width: 100%;
    text-align: center;
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Map Button - From Register */
.map-button {
    width: 100%;
    padding: 14px 12px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background-color: #f9fafb;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.map-button:hover {
    background-color: #f3f4f6;
    border-color: #7c3aed;
}

.map-icon {
    font-size: 20px;
}

.map-button span {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    line-height: 1.5;
}

/* Bottom Bar - Fixed */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1), 0 -2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 12px 20px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
}

/* Button styles moved to /public/assets/css/components/buttons.css */

/* Error States */
.form-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.file-upload.error {
    border-color: #e74c3c !important;
    background-color: #fdf2f2;
}

.file-upload.error .upload-content {
    color: #e74c3c;
}

.validation-error {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.error-message {
    font-size: 12px;
    color: #ef4444;
    margin-top: 4px;
    line-height: 1.4;
}

/* Alert Styles */
.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    border: 1px solid;
    font-size: 14px;
    line-height: 1.5;
    transition: all 0.3s ease;
    animation: slideDown 0.3s ease;
}

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

.alert-success {
    background-color: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}

.alert-error {
    background-color: #fef2f2;
    border-color: #fecaca;
    color: #dc2626;
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.alert-icon {
    font-size: 16px;
    font-weight: 600;
}

.alert-text {
    flex: 1;
    font-weight: 500;
}

/* Loading State */
.submit-button.loading {
    opacity: 0.8;
    cursor: not-allowed;
}

.submit-button.loading::after {
    content: "";
    width: 16px;
    height: 16px;
    margin-left: 8px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    display: inline-block;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 640px) {
    .content-wrapper {
        padding: 0 12px;
    }

    .form-section {
        padding: 20px 16px;
        margin-bottom: 12px;
        border-radius: 8px;
    }

    .bottom-bar,
    .footer {
        padding: 10px 16px;
        padding-bottom: calc(10px + env(safe-area-inset-bottom));
    }

    .submit-button {
        height: 42px;
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Focus States */
.form-group:focus-within .form-label {
    color: #7c3aed;
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.5;
    padding: 16px 0;
}

.footer-link {
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.footer-link:hover {
    opacity: 0.8;
}

.footer-link.forgot-password {
    color: #521891;
}

.footer-link.register-link {
    color: #6622b0;
}

/* Success/Error States for Form Inputs */
.form-input.success {
    border-color: #10b981;
    background-color: #f0fdf4;
}

.form-input.success:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-input.error {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.form-input.error:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Form Group Focus States */
.form-group.focused .form-label {
    color: #521891;
    font-weight: 600;
}

.form-group.filled .form-label {
    color: #374151;
}

/* Password Reset Specific Styles */
.password-strength-indicator {
    margin-top: 5px;
    font-size: 12px;
}

.password-strength-weak {
    color: #ef4444;
}

.password-strength-medium {
    color: #f59e0b;
}

.password-strength-strong {
    color: #10b981;
}

/* Success Messages */
.success-message {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Alert Animations */
.alert {
    animation: slideInFromTop 0.3s ease-out;
}

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

/* Safe Area Support */
@supports (padding: max(0px)) {
    .bottom-bar {
        padding-bottom: max(16px, env(safe-area-inset-bottom));
    }
}

/* OAuth Register Page Styles */
.register-oauth-container {
    background-color: #ffffff;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.back-button {
    position: absolute;
    top: 20px;
    left: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 35px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.back-arrow {
    width: 16px;
    height: 16px;
    color: #000000;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding: 0 16px;
    margin-top: 70px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    height: 27px;
    width: 165px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #561d92;
    text-decoration: none;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.header-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.page-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #000000;
    line-height: 1.2;
}

.page-description {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #979797;
    line-height: 1.5;
    max-width: 284px;
    margin: 0 auto;
}

.auth-section {
    border: 1px solid #f1f1f1;
    border-radius: 26px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.google-auth-container {
    display: flex;
    flex-direction: column;
    gap: 21px;
    width: 100%;
}

.google-signin-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 8px 16px;
    border: 1px solid #f2f2f2;
    border-radius: 16px;
    background-color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
    width: 100%;
}

.google-signin-btn:hover {
    border-color: #e0e0e0;
    background-color: #fafafa;
}

.google-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7.5px;
    border: 0.75px solid #f2f2f2;
    border-radius: 7.5px;
    width: 39px;
    height: 39px;
}

.google-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.google-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #a8a8a8;
    line-height: 1.5;
    white-space: nowrap;
}

.terms-section {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.checkbox-wrapper {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.custom-checkbox {
    width: 18px;
    height: 18px;
    border: 1px solid #cccccc;
    border-radius: 7px;
    background-color: #ffffff;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    display: block;
}

.custom-checkbox:hover {
    border-color: #31BD31;
}

.checkbox-input {
    position: absolute;
    opacity: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-input:checked + .custom-checkbox {
    background-color: #31BD31;
    border-color: #31BD31;
}

.checkbox-input:checked + .custom-checkbox::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
}

.terms-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #818181;
    line-height: 1.4;
    cursor: pointer;
    margin: 0;
    text-align: left;
}

.terms-link {
    color: #561d92;
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

.divider-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #cccccc;
    line-height: 1.5;
}

.login-link-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.login-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #521891;
    text-decoration: none;
    line-height: 1.5;
}

.login-link:hover {
    text-decoration: underline;
}

/* Mobile responsive for OAuth Register */
@media (max-width: 480px) {
    .main-content {
        padding: 0 16px;
        max-width: 100%;
    }
    
    .auth-section {
        padding: 16px;
    }
    
    .page-description {
        font-size: 12px;
    }
}
