/* ============================================
   AUTHENTICATION PAGE - ANIMATED DESIGN
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #2563eb;
    --primary-dark: #1e40af;
    --gradient-start: #3b82f6;
    --gradient-end: #6366f1;
    --purple: #7c3aed;
    --purple-dark: #6d28d9;
    --white: #ffffff;
    --gray-light: #f3f4f6;
    --gray-medium: #9ca3af;
    --gray-dark: #374151;
    --text-dark: #1f2937;
    --pink-bg: #fce7f3;
    /* Gold theme */
    --gold: #D4AF27;
    --gold-dark: #b8922e;
    --gold-light: #f0d78c;
    --gold-bg: #fdf8e8;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #fce7f3 0%, #f3e8ff 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-x: hidden;
}

/* ===== AUTH HEADER ===== */
.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
    animation: fadeInDown 0.8s ease;
    z-index: 10;
}

.auth-logo {
    font-size: 4rem;
    font-weight: 900;
    color: #000000;
    margin: 0;
    letter-spacing: 3px;
    text-transform: lowercase;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #000000;
    background-clip: unset;
    position: relative;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    /* Distressed/grunge effect */
    text-shadow: 
        0.5px 0.5px 0 rgba(0,0,0,0.8),
        -0.5px -0.5px 0 rgba(0,0,0,0.8),
        1px 1px 0 rgba(0,0,0,0.6),
        -1px -1px 0 rgba(0,0,0,0.6),
        1.5px 0.5px 0 rgba(0,0,0,0.4),
        -0.5px 1.5px 0 rgba(0,0,0,0.4),
        0.5px -1px 0 rgba(0,0,0,0.5),
        -1px 0.5px 0 rgba(0,0,0,0.5),
        2px 1px 1px rgba(0,0,0,0.3),
        -1px 2px 1px rgba(0,0,0,0.3);
    filter: contrast(1.2) brightness(0.95);
}

.auth-logo::before {
    content: 'atíthí';
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(0, 0, 0, 0.15);
    z-index: -1;
    transform: translate(0.5px, 0.5px);
    text-shadow: none;
    filter: none;
}

.auth-logo::after {
    display: none;
}

.auth-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #5a6c7d;
    margin: 0.5rem 0 0 0;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.9;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-container {
    width: 100%;
    max-width: 1000px;
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.auth-card {
    background: #e8f0fe;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    display: flex;
    min-height: 550px;
    max-height: 600px;
    width: 100%;
    max-width: 950px;
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55), background 0.8s ease;
}

.auth-card.switched {
    background: var(--gold-bg);
}

/* ===== AUTH SECTIONS ===== */
.auth-section {
    flex: 1;
    padding: 3rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-width: 0;
}

.auth-card.login-only .auth-section {
    width: 100%;
    padding: 3.5rem 3.5rem;
    justify-content: flex-start;
}

.auth-card.login-only .section-content {
    width: 100%;
    max-width: 100%;
}

.register-section {
    background: var(--gold-bg);
    z-index: 2;
    position: relative;
}

/* Gold theme for registration inputs */
.register-section .input-wrapper input:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(212, 169, 66, 0.15);
}

.register-section .input-wrapper input:focus + .input-icon {
    color: var(--gold);
}

.register-section .input-wrapper input {
    border: 2px solid #f5e6c3;
    background: #fffdf7;
}

.register-section .section-title {
    color: var(--gold-dark);
}

.login-section {
    background: #e8f0fe;
    z-index: 1;
    position: relative;
}

/* Blue theme for login inputs */
.login-section .input-wrapper input {
    border: 2px solid #c7d9f0;
    background: #f0f5ff;
}

.login-section .input-wrapper input:focus {
    border-color: var(--primary-blue);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.login-section .input-wrapper input:focus + .input-icon {
    color: var(--primary-blue);
}

.login-section .section-title {
    color: var(--primary-dark);
}

.login-section .form-group label {
    color: var(--primary-dark);
}

.login-section .social-btn {
    border: 2px solid #c7d9f0;
    background: #f0f5ff;
}

.login-section .social-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.login-section .social-divider::before,
.login-section .social-divider::after {
    background: #b8d4f0;
}

.login-section .social-divider span {
    background: #e8f0fe;
    color: var(--primary-dark);
}

.login-section .forgot-password {
    color: var(--primary-blue);
}

.login-section .forgot-password:hover {
    color: var(--primary-dark);
}

.login-section.active {
    z-index: 3;
}

.register-section.active {
    z-index: 3;
}

.section-content {
    width: 100%;
    max-width: 350px;
    overflow: hidden;
    word-wrap: break-word;
    position: relative;
    z-index: 10;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Alternative: Content slides in from the direction it's positioned */
@keyframes slideInFromRightSide {
    from {
        opacity: 0;
        transform: translateX(80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromLeftSide {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation for section content based on direction */
/* NO default animation - only animate when section becomes active */
.login-section .section-content {
    /* No animation by default */
}

.register-section .section-content {
    /* No animation by default */
}

/* Prevent animations on inactive sections */
.login-section:not(.active) .section-content,
.register-section:not(.active) .section-content {
    animation: none !important;
    opacity: 0;
}

/* When login section is active (on right side) - content slides in from RIGHT */
.auth-card:not(.switched) .login-section.active .section-content {
    animation: slideInFromRightSide 0.8s ease !important;
    opacity: 1;
}

/* When registration section is active (on left side) - content slides in from LEFT */
.auth-card.switched .register-section.active .section-content {
    animation: slideInFromLeftSide 0.8s ease !important;
    opacity: 1;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.2;
}

.auth-card.login-only .section-title {
    text-align: left;
}

/* ===== FORM STYLES ===== */
.auth-form {
    width: 100%;
    position: relative;
    z-index: 10;
}

/* ===== MESSAGE STYLES ===== */
.message {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.message.error {
    background: #ffecec;
    color: #8a1f1f;
    border: 1px solid #f1c0c0;
}

.message.success {
    background: #e6ffef;
    color: #094a27;
    border: 1px solid #b6f0c7;
}

.message div {
    margin: 0;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    color: var(--gray-medium);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    background: var(--gray-light);
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    z-index: 11;
}

.input-wrapper input:focus {
    border-color: var(--primary-blue);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    border-width: 2px;
}

.input-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-medium);
    font-size: 1rem;
    pointer-events: none;
}

.input-wrapper input:focus + .input-icon {
    color: var(--primary-blue);
}

.form-options {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
}

.forgot-password {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ===== BUTTONS ===== */
.btn-primary {
    width: 100%;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 169, 66, 0.4);
}

.btn-gradient:hover {
    background: linear-gradient(135deg, var(--gold-dark), #9a7a24);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 169, 66, 0.5);
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-gradient:hover::before {
    width: 300px;
    height: 300px;
}

.btn-solid {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.btn-solid:hover {
    background: linear-gradient(135deg, var(--primary-dark), #1e3a8a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

/* ===== SOCIAL LOGIN ===== */
.social-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.social-divider::before,
.social-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--gray-light);
}

.social-divider::before {
    left: 0;
}

.social-divider::after {
    right: 0;
}

.social-divider span {
    color: var(--gray-medium);
    font-size: 0.85rem;
    background: var(--white);
    padding: 0 1rem;
    position: relative;
    z-index: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 100%;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--gray-light);
    background: var(--white);
    color: var(--gray-dark);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Gold social buttons for registration */
.register-section .social-btn {
    border: 2px solid #f5e6c3;
    background: #fffdf7;
}

.register-section .social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 4px 12px rgba(212, 169, 66, 0.3);
}

.register-section .social-divider::before,
.register-section .social-divider::after {
    background: #e8d9b0;
}

.register-section .social-divider span {
    background: var(--gold-bg);
    color: var(--gold-dark);
}

.register-section .form-group label {
    color: var(--gold-dark);
}

/* ===== WELCOME PANEL ===== */
.welcome-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 38%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    overflow: hidden;
    min-width: 0;
    border-radius: 25px 0 0 25px;
    pointer-events: auto;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    clip-path: polygon(0% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.auth-card.switched .welcome-panel {
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    left: auto;
    right: 0;
    border-radius: 0 25px 25px 0;
    z-index: 2;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.welcome-content {
    text-align: center;
    color: var(--white);
    padding: 2rem;
    animation: fadeIn 0.6s ease;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    word-wrap: break-word;
    position: relative;
    z-index: 3;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.welcome-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    animation: slideInRight 0.8s ease;
    line-height: 1.05;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.welcome-text {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: slideInRight 1s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    line-height: 1.6;
    font-weight: 400;
}

.btn-toggle {
    padding: 0.875rem 2.5rem;
    background: var(--white);
    color: var(--primary-dark);
    border: 2px solid var(--white);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: slideInRight 1s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 140px;
}

.btn-toggle:hover {
    background: transparent;
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.auth-card.switched .btn-toggle {
    color: var(--gold-dark);
}


/* ===== ANIMATIONS ===== */
.register-section,
.login-section {
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                opacity 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.auth-card.switched .register-section {
    transform: translateX(0);
    opacity: 1;
    z-index: 3;
    pointer-events: auto;
}

.auth-card.switched .register-section .section-content {
    opacity: 1 !important;
    z-index: 10;
    position: relative;
}

.auth-card.switched .login-section {
    transform: translateX(-100%);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

.auth-card.switched .login-section .section-content {
    animation: none !important;
    opacity: 0 !important;
}

.auth-card:not(.switched) .register-section {
    transform: translateX(100%);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

.auth-card:not(.switched) .register-section .section-content {
    animation: none !important;
    opacity: 0 !important;
}

.auth-card:not(.switched) .login-section {
    transform: translateX(0);
    opacity: 1;
    z-index: 3;
    pointer-events: auto;
}

.auth-card:not(.switched) .login-section .section-content {
    opacity: 1 !important;
    z-index: 10;
    position: relative;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }
    
    .auth-container {
        max-width: 100%;
    }
    
    .auth-card {
        flex-direction: column;
        min-height: auto;
        max-height: none;
        border-radius: 20px;
    }
    
    .auth-section {
        padding: 2rem 1.5rem;
        width: 100% !important;
        min-height: auto;
    }
    
    .register-section,
    .login-section {
        width: 100%;
    }
    
    .section-content {
        max-width: 100%;
        overflow: hidden;
        word-wrap: break-word;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    .welcome-panel {
        position: relative;
        width: 100%;
        height: 180px;
        clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 0% 100%);
        order: -1;
        overflow: hidden;
        min-width: 0;
    }
    
    .auth-card.switched .welcome-panel {
        clip-path: polygon(0% 15%, 100% 0%, 100% 100%, 0% 100%);
        order: -1;
    }
    
    .welcome-content {
        padding: 1.25rem;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .welcome-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .welcome-text {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .btn-toggle {
        padding: 0.65rem 1.75rem;
        font-size: 0.9rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .input-wrapper input {
        padding: 0.5rem 2.25rem 0.5rem 0.875rem;
        font-size: 0.9rem;
    }
    
    .btn-primary {
        padding: 0.8rem 1.75rem;
        font-size: 0.95rem;
    }
    
    .social-divider {
        margin: 1.25rem 0;
    }
    
    .social-divider span {
        font-size: 0.8rem;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Mobile: Stack vertically instead of sliding */
    .auth-card.switched .register-section,
    .auth-card:not(.switched) .login-section {
        transform: translateY(0) !important;
        opacity: 1 !important;
        display: flex !important;
        position: relative;
        z-index: 2;
    }
    
    .auth-card.switched .login-section,
    .auth-card:not(.switched) .register-section {
        transform: translateY(0) !important;
        opacity: 0 !important;
        display: none !important;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1;
    }
    
    /* Mobile: Use fadeInUp for content on mobile */
    .section-content {
        animation: fadeInUp 0.6s ease !important;
    }
    
    .auth-card.switched .register-section .section-content,
    .auth-card:not(.switched) .login-section .section-content {
        animation: fadeInUp 0.6s ease !important;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0.75rem;
    }
    
    .auth-card {
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .auth-section {
        padding: 1.5rem 1.25rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .section-content {
        width: 100%;
        overflow: hidden;
        word-wrap: break-word;
    }
    
    .welcome-panel {
        height: 160px;
        clip-path: polygon(0% 0%, 100% 0%, 100% 88%, 0% 100%);
    }
    
    .auth-card.switched .welcome-panel {
        clip-path: polygon(0% 12%, 100% 0%, 100% 100%, 0% 100%);
    }
    
    .welcome-content {
        padding: 1rem;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .welcome-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .welcome-text {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .btn-toggle {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .form-group {
        margin-bottom: 0.875rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
    
    .input-wrapper input {
        padding: 0.5rem 2rem 0.5rem 0.75rem;
        font-size: 0.875rem;
        border-radius: 8px;
    }
    
    .input-icon {
        font-size: 0.9rem;
        right: 0.75rem;
    }
    
    .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .social-divider {
        margin: 1rem 0;
    }
    
    .social-divider span {
        font-size: 0.75rem;
        padding: 0 0.75rem;
    }
    
    .social-login {
        gap: 0.75rem;
    }
    
    .social-btn {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
    
    .forgot-password {
        font-size: 0.85rem;
    }
    
    .form-options {
        margin-bottom: 1rem;
    }
}

/* Touch-friendly improvements for mobile */
@media (max-width: 768px) {
    .btn-primary,
    .btn-toggle,
    .social-btn {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        touch-action: manipulation;
    }
    
    input,
    button {
        font-size: 16px !important; /* Prevents zoom on iOS */
    }
    
    .auth-card {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Prevent text overflow on mobile */
    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .section-title,
    .welcome-title {
        font-size: clamp(1.25rem, 4vw, 2rem);
    }
    
    .welcome-text,
    .social-divider span {
        font-size: clamp(0.85rem, 3vw, 1rem);
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    body {
        padding: 0.5rem;
    }
    
    .auth-card {
        border-radius: 12px;
    }
    
    .auth-section {
        padding: 1.25rem 1rem;
    }
    
    .section-title {
        font-size: 1.35rem;
    }
    
    .welcome-panel {
        height: 140px;
    }
    
    .welcome-title {
        font-size: 1.35rem;
    }
    
    .welcome-text {
        font-size: 0.8rem;
    }
    
    .btn-toggle {
        padding: 0.55rem 1.25rem;
        font-size: 0.8rem;
    }
    
    .input-wrapper input {
        padding: 0.45rem 1.75rem 0.45rem 0.7rem;
        font-size: 0.85rem;
    }
    
    .btn-primary {
        padding: 0.7rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .social-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

