/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter";
    background-color: #f5f5f7;
    color: #1d1d1f;
    line-height: 1.6;
    min-height: 100vh;
}

/* Main Container */
.kolidauth-main-container {
    display: flex;
    min-height: 100vh;
    background-image:url("../../images/v2/bio/bg-login.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Left Column - Image Section (Desktop) */
.kolidauth-image-section {
    flex: 1;
    background: none;
    position: relative;
    overflow: hidden;
    display: none;
}

.kolidauth-image-background {
    width: 100%;
    height: 100%;
    position: relative;
    background: none;
    text-align-last: center;
    align-content: space-evenly;
}

.kolidauth-image-background-otp {
    width: 100%;
    height: 100%;
    position: relative;
    background: none;
    text-align-last: center;
    align-content: flex-end;
}

.gmbr-mobile {
    display: none;
}

.kolidauth-pattern-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, rgba(30, 50, 200, 0.1) 0px, transparent 1px, transparent 40px),
        repeating-linear-gradient(90deg, rgba(30, 50, 200, 0.1) 0px, transparent 1px, transparent 40px);
    opacity: 0.5;
}

.kolidauth-character-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.kolidauth-character-illustration {
    position: relative;
    width: 400px;
    height: 500px;
}

.kolidauth-character-mascot {
    position: absolute;
    width: 280px;
    height: 350px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 140px 140px 20px 20px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.kolidauth-character-mascot::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    top: 30%;
    left: 25%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.kolidauth-character-mascot::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    top: 30%;
    right: 25%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Stat Cards */
.kolidauth-stat-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 120px;
}

.kolidauth-stat-label {
    font-size: 11px;
    color: #666;
    font-weight: 500;
}

.kolidauth-stat-value {
    font-size: 20px;
    font-weight: 800;
    color: #1d1d1f;
}

.kolidauth-stat-growth {
    font-size: 11px;
    color: #34C759;
    font-weight: 600;
}

.kolidauth-stat-growth::before {
    content: '👁 ';
}

.kolidauth-stat-followers {
    top: 10%;
    left: 5%;
}

.kolidauth-stat-likes {
    top: 25%;
    left: 0%;
}

.kolidauth-stat-comments {
    top: 45%;
    left: 5%;
}

.kolidauth-stat-views {
    top: 65%;
    left: 0%;
}

.kolidauth-image-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.7;
}

/* Mobile Stats (Hidden on Desktop) */
.kolidauth-mobile-stats {
    display: none;
}

/* Right Column - Form Section */
.kolidauth-form-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: transparent;
}

.kolidauth-form-container {
    width: 100%;
    max-width: 480px;
}

/* Login Card */
.kolidauth-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    height: 650px;
}

.kolidauth-card-signup {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    height: 710px;
}

/* Logo */
.kolidauth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.kolidauth-logo-text {
    font-size: 20px;
    font-weight: 800;
    color: #6B7FFF;
    letter-spacing: 1px;
}

/* Title */
.kolidauth-title {
    font-size: 56px;
    line-height: 66px;
    font-weight: 600;
    color: #5271FF;
    text-align: center;
    margin-bottom: 8px;
    margin-top: 35px;
}

.kolidauth-subtitle {
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    color: #5E587A;
    text-align: center;
    margin-bottom: 32px;
}

.kolidauth-subtitle-email {
    font-size: 36px;
    line-height: 46px;
    font-weight: 400;
    color: #6C6C6C;
    text-align: center;
    margin-top: 20px;
}

/* Social Buttons */
.kolidauth-social-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kolidauth-social-btn {
    width: 100%;
    padding: 14px 20px;
    border: 0px solid #e0e0e0;
    border-radius: 12px;
    background: #f5f5f5;
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: 500;
    color: ##232323;
    position: relative;
}

.kolidauth-social-btn:hover {
    transform: translateY(-2px);
}

.kolidauth-social-btn-email {
    width: 100%;
    padding: 14px 20px;
    border: 0px solid #e0e0e0;
    border-radius: 8px;
    background: #5271FF;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 700;
    color: #FFDA00;
    font-family: "Inter";
}

.kolidauth-social-btn-email:hover {
    transform: translateY(-2px);
}

.kolidauth-social-btn:active {
    transform: translateY(0);
}

.kolidauth-social-btn svg {
    width: 20px;
    height: 20px;
    justify-self: start;
}

.kolidauth-social-btn span {
    text-align: center;
    justify-self: center;
    margin-right: 36px;
    color: #232323;
    font-size: 18px;
    font-weight: 500;
    font-family: "Inter";
}

/* Footer Text */
.kolidauth-footer-text-wa {
    text-align: center;
    margin-top: 225px;
    font-size: 14px;
}

.kolidauth-footer-text-otp {
    text-align: center;
    margin-top: 160px;
    font-size: 14px;
}

.kolidauth-footer-text {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
}

.kolidauth-footer-label {
    color: #6C6C6C;
    font-size: 12px;
    font-weight: 400;
}

.kolidauth-footer-link {
    color: #5271FF;
    text-decoration: none;
    font-weight: 600;
    margin-left: 4px;
}

.kolidauth-footer-link:hover {
    text-decoration: underline;
}

/* Desktop - Show Image Section */
@media (min-width: 768px) {
    .kolidauth-image-section {
        display: block;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .kolidauth-character-illustration {
        width: 500px;
        height: 600px;
    }
    
    .kolidauth-character-mascot {
        width: 320px;
        height: 400px;
    }
    
    .kolidauth-stat-card {
        min-width: 140px;
        padding: 14px 18px;
    }
    
    .kolidauth-stat-value {
        font-size: 24px;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    .kolidauth-form-section {
        padding: 0px;
        align-items: self-end;
    }
    
    .kolidauth-form-container {
        max-width: 100%;
        margin-bottom: -85px;
    }
    
    /* Mobile Stats */
    .kolidauth-mobile-stats {
        display: block;
        position: relative;
        margin-bottom: 20px;
        padding: 20px;
        display: flex;
        justify-content: space-around;
        align-items: flex-start;
    }
    
    .kolidauth-mobile-stat-item {
        background: white;
        border-radius: 8px;
        padding: 8px 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .kolidauth-mobile-stat-value {
        font-size: 14px;
        font-weight: 700;
        color: #1d1d1f;
    }
    
    .kolidauth-mobile-character {
        position: absolute;
        bottom: -40px;
        right: 20px;
        width: 120px;
        height: 140px;
    }
    
    .kolidauth-mobile-mascot {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
        border-radius: 60px 60px 10px 10px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }
    
    .kolidauth-mobile-mascot::before {
        content: '';
        position: absolute;
        width: 30px;
        height: 30px;
        background: #fff;
        border-radius: 50%;
        top: 30%;
        left: 20%;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }
    
    .kolidauth-mobile-mascot::after {
        content: '';
        position: absolute;
        width: 30px;
        height: 30px;
        background: #fff;
        border-radius: 50%;
        top: 30%;
        right: 20%;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }
    
    .kolidauth-card {
        padding: 50px 35px;
        border-radius: 20px 20px 0px 0px;
    }
    
    .kolidauth-title {
        font-size: 48px;
    }
    
    .kolidauth-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .kolidauth-social-btn {
        padding: 12px 16px;
        font-size: 14px;
    }

    /* Main Container */
    .kolidauth-main-container {
        display: block;
        align-content: space-evenly;
    }

    /* Left Column - Image Section (Desktop) */
    .kolidauth-image-section {
        display: block;
    }

    .kolidauth-social-btn span {
        font-size: 16px; 
    }

    .gmbr-mobile {
        display: block;
        width: 100%;
        padding: 0px 55px;
        margin-bottom: -15px;
        z-index: 1;
        position: relative;
    }

    .gmbr-desk {
        display: none;
    }
}

@media (max-width: 360px) {
    .kolidauth-card {
        padding: 24px 20px;
    }
    
    .kolidauth-title {
        font-size: 24px;
    }
    
    .kolidauth-social-buttons {
        gap: 10px;
    }
    
    .kolidauth-social-btn {
        padding: 11px 14px;
        font-size: 13px;
    }
    
    .kolidauth-mobile-stat-item {
        padding: 6px 10px;
    }
    
    .kolidauth-mobile-stat-value {
        font-size: 12px;
    }

    
}
