/* ===== CREATIVE POSTUGO LOGIN PAGE - PROFESSIONAL SOCIAL BUSINESS DESIGN ===== */

/* Custom select styles */
.custom-select-wrapper {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}
.custom-select {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 0.9rem;
    background: linear-gradient(var(--glass-bg), var(--glass-bg)) padding-box,
                linear-gradient(135deg, #6c63ff, #a18cd1) border-box;
    color: var(--text-color);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}
.custom-select:focus {
    background: linear-gradient(var(--white), var(--white)) padding-box,
                linear-gradient(135deg, #a18cd1, #6c63ff) border-box;
    box-shadow: 0 0 20px rgba(108, 99, 255, 0.3);
}
.custom-select-wrapper .input-icon {
    pointer-events: none;
    right: 1rem;
    color: #6c63ff;
}

/* Drag and drop file upload styles */
.drag-upload {
    width: 100%;
    background: var(--glass-bg);
    border: 2px dashed rgba(108, 99, 255, 0.4);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    margin-bottom: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-sizing: border-box;
}
.drag-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    color: var(--light-text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.drag-upload-icon {
    font-size: 1.8rem;
    color: #6c63ff;
    margin-bottom: 0.2rem;
}
.drag-upload-text {
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
}
.drag-upload.drag-active, .drag-upload-content.drag-active {
    border-color: #6c63ff;
    background: rgba(108, 99, 255, 0.1);
}
.drag-upload-preview {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.drag-upload-preview img {
    max-width: 80px;
    max-height: 80px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

/* Custom file upload styles */
.file-upload-wrapper {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}
.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.6rem;
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid transparent;
    border-radius: 12px;
    background: linear-gradient(var(--glass-bg), var(--glass-bg)) padding-box,
                linear-gradient(135deg, #6c63ff, #a18cd1) border-box;
    color: var(--light-text);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}
.file-upload-label:hover, .file-upload-label:focus {
    background: linear-gradient(var(--white), var(--white)) padding-box,
                linear-gradient(135deg, #a18cd1, #6c63ff) border-box;
    box-shadow: 0 0 20px rgba(108, 99, 255, 0.3);
}
.file-upload-label i {
    font-size: 1.2rem;
    color: #6c63ff;
}
.file-upload-text {
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
}

/* ===== ROOT VARIABLES - POSTUGO BRAND COLOR PALETTE ===== */
:root {
    /* Primary Brand Colors */
    --primary-purple: #6c63ff;
    --secondary-purple: #a18cd1;
    --neon-purple: #6c63ff;
    --neon-blue: #6c63ff;
    --neon-pink: #a18cd1;
    --neon-orange: #8b7fd4;
    
    /* Core Colors */
    --primary-color: #6c63ff;
    --primary-dark: #5a52d5;
    --secondary-color: #a18cd1;
    --accent-color: #c4b5fd;
    
    /* Text Colors */
    --text-color: #1F2937;
    --light-text: #6B7280;
    --white: #ffffff;
    
    /* UI Colors */
    --border-color: rgba(108, 99, 255, 0.2);
    --background-light: rgba(255, 255, 255, 0.8);
    --glass-bg: rgba(255, 255, 255, 0.95);
    
    /* Status Colors */
    --error-color: #EF4444;
    --success-color: #10B981;
    --warning-color: #F59E0B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* ===== BODY - PROFESSIONAL SOCIAL BUSINESS BACKGROUND ===== */
body {
    height: 100vh;
    max-height: 100vh;
    width: 100%;
    max-width: 100%;
    background: linear-gradient(135deg, #a18cd1 0%, #6c63ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', Arial, sans-serif;
    padding: 0;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Social Network Connection Pattern - Main Layer */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Connection dots pattern - representing social network */
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 30% 60%, rgba(255, 255, 255, 0.12) 3px, transparent 3px),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 90% 70%, rgba(255, 255, 255, 0.1) 4px, transparent 4px),
        radial-gradient(circle at 50% 90%, rgba(255, 255, 255, 0.12) 3px, transparent 3px),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 3px, transparent 3px),
        radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 60% 50%, rgba(255, 255, 255, 0.08) 4px, transparent 4px),
        radial-gradient(circle at 40% 15%, rgba(255, 255, 255, 0.12) 2px, transparent 2px),
        radial-gradient(circle at 85% 85%, rgba(255, 255, 255, 0.1) 3px, transparent 3px),
        /* Subtle geometric hexagon pattern for business/trust */
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5L55 17.5V42.5L30 55L5 42.5V17.5L30 5z' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* Social Connection Lines - Secondary Layer */
body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Curved connection lines suggesting social connections */
        url("data:image/svg+xml,%3Csvg width='400' height='400' viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 100 Q150 50 200 150 T350 200' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='2'/%3E%3Cpath d='M100 300 Q200 250 250 350 T400 300' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1.5'/%3E%3Ccircle cx='50' cy='100' r='6' fill='rgba(255,255,255,0.08)'/%3E%3Ccircle cx='200' cy='150' r='8' fill='rgba(255,255,255,0.06)'/%3E%3Ccircle cx='350' cy='200' r='5' fill='rgba(255,255,255,0.08)'/%3E%3Ccircle cx='100' cy='300' r='7' fill='rgba(255,255,255,0.05)'/%3E%3Ccircle cx='250' cy='350' r='6' fill='rgba(255,255,255,0.07)'/%3E%3C/svg%3E"),
        /* Abstract network nodes */
        url("data:image/svg+xml,%3Csvg width='300' height='300' viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='50' y1='50' x2='150' y2='100' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Cline x1='150' y1='100' x2='250' y2='80' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Cline x1='150' y1='100' x2='100' y2='200' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3Cline x1='100' y1='200' x2='200' y2='250' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Ccircle cx='50' cy='50' r='4' fill='rgba(255,255,255,0.08)'/%3E%3Ccircle cx='150' cy='100' r='6' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='250' cy='80' r='4' fill='rgba(255,255,255,0.07)'/%3E%3Ccircle cx='100' cy='200' r='5' fill='rgba(255,255,255,0.08)'/%3E%3Ccircle cx='200' cy='250' r='4' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
    background-size: 400px 400px, 300px 300px;
    background-position: 0 0, 100px 50px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

/* ===== MAIN CONTAINER ===== */
.container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
}

/* ===== GLASSMORPHISM LOGIN CARD ===== */
.login-container {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 0 80px rgba(108, 99, 255, 0.1);
    padding: 1.2rem 1.8rem;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    animation: cardEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

/* Hide scrollbar but keep functionality */
.login-container::-webkit-scrollbar {
    width: 0;
    display: none;
}

.login-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Decorative Corner Accents */
.login-container::before,
.login-container::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
    pointer-events: none;
}

.login-container::before {
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, #a18cd1, #6c63ff);
}

.login-container::after {
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, #6c63ff, #a18cd1);
}

/* ===== LOGIN HEADER - CREATIVE LOGO ===== */
.login-header {
    text-align: center;
    margin-bottom: 0.8rem;
    position: relative;
}

.login-header .logo {
    position: relative;
    background: linear-gradient(135deg, #a18cd1 0%, #6c63ff 100%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.6rem auto;
    box-shadow: 
        0 10px 30px rgba(108, 99, 255, 0.4),
        0 0 0 3px rgba(255, 255, 255, 0.8),
        0 0 0 6px rgba(108, 99, 255, 0.2);
}

.login-header .logo::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a18cd1, #6c63ff);
    z-index: -1;
    animation: ringPulse 3s ease-in-out infinite;
    opacity: 0.4;
}

@keyframes logoGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.login-header .logo i {
    font-size: 1.8rem;
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.login-header h2 {
    margin: 0 0 0.2rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6c63ff, #a18cd1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.login-header p {
    color: var(--light-text);
    font-size: 0.85rem;
    font-weight: 400;
}

/* ===== FORM STYLING ===== */
.form-group {
    margin-bottom: 0.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}

.input-wrapper {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

/* ===== CREATIVE INPUT FIELDS ===== */
.form-group input {
    width: 100%;
    padding: 0.65rem 2.8rem 0.65rem 1rem;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 0.9rem;
    background: linear-gradient(var(--glass-bg), var(--glass-bg)) padding-box,
                linear-gradient(135deg, rgba(108, 99, 255, 0.3), rgba(161, 140, 209, 0.3)) border-box;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    color: var(--text-color);
    box-sizing: border-box;
}

.form-group input::placeholder {
    color: #9CA3AF;
    font-size: 0.85rem;
}

.form-group input:focus {
    background: linear-gradient(var(--white), var(--white)) padding-box,
                linear-gradient(135deg, #6c63ff, #a18cd1) border-box;
    box-shadow: 
        0 0 0 4px rgba(108, 99, 255, 0.1),
        0 10px 25px rgba(108, 99, 255, 0.15);
    transform: translateY(-1px);
}

.input-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c63ff;
    font-size: 1rem;
    transition: all 0.3s ease;
    z-index: 2;
    opacity: 0.7;
}

.form-group input:focus + .input-icon,
.input-wrapper:hover .input-icon {
    color: #a18cd1;
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.toggle-password {
    cursor: pointer;
    pointer-events: auto;
}

/* ===== VALIDATION MESSAGES ===== */
.validation-message {
    font-size: 0.75rem;
    margin-top: 0.25rem;
    height: 1rem;
    transition: all 0.3s ease;
    padding-left: 0.5rem;
}

.validation-message.error {
    color: var(--error-color);
}

.validation-message.success {
    color: var(--success-color);
}

/* ===== PASSWORD STRENGTH INDICATOR ===== */
.password-strength {
    margin-top: 0.4rem;
    display: none;
}

.password-strength.visible {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.strength-bar {
    height: 4px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 0.2rem;
    overflow: hidden;
}

.strength-progress {
    height: 100%;
    width: 0%;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.strength-progress.weak {
    width: 30%;
    background: linear-gradient(90deg, var(--error-color), #F87171);
}

.strength-progress.medium {
    width: 60%;
    background: linear-gradient(90deg, var(--warning-color), #FBBF24);
}

.strength-progress.strong {
    width: 100%;
    background: linear-gradient(90deg, var(--success-color), #34D399);
}

.strength-text {
    font-size: 0.7rem;
    color: var(--light-text);
}

/* ===== OPTIONS ROW ===== */
.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
}

/* ===== CREATIVE CHECKBOX ===== */
.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 26px;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--light-text);
    user-select: none;
    transition: color 0.3s ease;
}

.checkbox-container:hover {
    color: var(--text-color);
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    height: 18px;
    width: 18px;
    background: var(--glass-bg);
    border: 2px solid rgba(108, 99, 255, 0.3);
    border-radius: 5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.checkbox-container:hover input ~ .checkmark {
    border-color: #6c63ff;
    box-shadow: 0 0 10px rgba(108, 99, 255, 0.2);
}

.checkbox-container input:checked ~ .checkmark {
    background: linear-gradient(135deg, #6c63ff, #a18cd1);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(108, 99, 255, 0.4);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

/* ===== FORGOT PASSWORD LINK ===== */
.forgot-link {
    color: #6c63ff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.forgot-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6c63ff, #a18cd1);
    transition: width 0.3s ease;
}

.forgot-link:hover {
    color: #a18cd1;
}

.forgot-link:hover::after {
    width: 100%;
}

/* ===== CREATIVE LOGIN BUTTON ===== */
.login-btn {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, #6c63ff 0%, #a18cd1 100%);
    background-size: 200% 200%;
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 
        0 6px 20px rgba(108, 99, 255, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 0.8rem;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.login-btn:hover {
    background-position: 100% 50%;
    transform: translateY(-2px);
    box-shadow: 
        0 10px 30px rgba(108, 99, 255, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.login-btn:hover::before {
    left: 100%;
}

.login-btn:active {
    transform: translateY(0) scale(0.98);
}

.btn-loader {
    display: none;
}

.loader {
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 3px solid var(--white);
    width: 20px;
    height: 20px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.login-btn.loading .btn-text {
    opacity: 0;
}

.login-btn.loading .btn-loader {
    display: block;
}

/* ===== SIGNUP LINK ===== */
.signup-link {
    text-align: center;
    margin-top: 0.6rem;
    font-size: 0.85rem;
    color: var(--light-text);
}

.signup-link a {
    color: #6c63ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.signup-link a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6c63ff, #a18cd1);
    transition: width 0.3s ease;
}

.signup-link a:hover {
    color: #a18cd1;
}

.signup-link a:hover::after {
    width: 100%;
}

/* ===== ANIMATED FLOATING SHAPES ===== */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.shape-1 {
    width: 250px;
    height: 250px;
    top: -80px;
    right: -80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    animation: floatShape1 25s ease-in-out infinite;
}

.shape-2 {
    width: 180px;
    height: 180px;
    bottom: -60px;
    left: -60px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: floatShape2 20s ease-in-out infinite;
}

.shape-3 {
    width: 120px;
    height: 120px;
    top: 40%;
    left: 5%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    animation: floatShape3 28s ease-in-out infinite;
}

@keyframes floatShape1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(-10px, 10px) scale(1.05); opacity: 0.8; }
}

@keyframes floatShape2 {
    0%, 100% { transform: translate(0, 0); opacity: 0.5; }
    50% { transform: translate(10px, -10px); opacity: 0.7; }
}

@keyframes floatShape3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    50% { transform: translate(15px, -15px) scale(1.1); opacity: 0.6; }
}

/* ===== OR DIVIDER ===== */
.or-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem 0rem 0;
    gap: 1rem;
}

.or-divider hr {
    flex: 1;
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(108, 99, 255, 0.3), transparent);
}

.or-divider span {
    color: var(--light-text);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 0.5rem;
    /* background: rgba(255, 255, 255, 0.95); */
    position: relative;
}

/* ===== SOCIAL SIGNIN SECTION ===== */
.social-signin-section {
    margin: 0;
    text-align: center;
}

.google-signin-btn {
    background: white;
    color: #444;
    border: 2px solid rgba(108, 99, 255, 0.25);
    padding: 0.65rem 1.5rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(108, 99, 255, 0.1);
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
}

.google-signin-btn:hover {
    border-color: #6c63ff;
    background: rgba(108, 99, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 99, 255, 0.2);
}

.google-signin-btn img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* ===== DOWNLOAD APP BUTTON ===== */
.download-app {
    text-align: center;
    margin-top: 0.6rem;
}

.download-btn {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(161, 140, 209, 0.1));
    color: #6c63ff;
    border: 2px solid rgba(108, 99, 255, 0.3);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.download-btn:hover {
    background: linear-gradient(135deg, #a18cd1, #6c63ff);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.open-app-btn {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.open-app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 600px) {
    html {
        overflow-x: hidden;
    }
    
    body {
        height: 100vh;
        max-height: 100vh;
        width: 100vw;
        max-width: 100vw;
        padding: 0;
        overflow-x: hidden;
    }
    
    .container {
        height: 100vh;
        width: 100%;
        max-width: 100%;
        padding: 8px;
        box-sizing: border-box;
    }
    
    .login-container {
        padding: 1.2rem 1.4rem;
        border-radius: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Adjust floating shapes for mobile */
    .shape-1 {
        width: 150px;
        height: 150px;
        top: -50px;
        right: -50px;
    }
    
    .shape-2 {
        width: 120px;
        height: 120px;
        bottom: -40px;
        left: -40px;
    }
    
    .shape-3 {
        width: 80px;
        height: 80px;
        top: 40%;
        left: 2%;
    }
    
    @keyframes floatShape1 {
        0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
        50% { transform: translate(-5px, 5px) scale(1.05); opacity: 0.8; }
    }
    
    @keyframes floatShape2 {
        0%, 100% { transform: translate(0, 0); opacity: 0.5; }
        50% { transform: translate(5px, -5px); opacity: 0.7; }
    }
    
    @keyframes floatShape3 {
        0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
        50% { transform: translate(8px, -8px) scale(1.1); opacity: 0.6; }
    }
    
    .login-header .logo {
        width: 60px;
        height: 60px;
        margin-bottom: 0.6rem;
    }
    
    .login-header .logo i {
        font-size: 1.6rem;
    }
    
    .login-header h2 {
        font-size: 1.2rem;
    }
    
    .login-header p {
        font-size: 0.8rem;
    }
    
    .form-group {
        margin-bottom: 0.5rem;
    }
    
    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    
    .form-group input {
        padding: 0.65rem 2.5rem 0.65rem 0.9rem;
        font-size: 0.85rem;
    }
    
    .login-btn {
        padding: 0.75rem;
        font-size: 0.9rem;
        height: 44px;
    }
    
    .options {
        margin-bottom: 0.6rem;
    }
    
    .checkbox-container {
        font-size: 0.75rem;
        padding-left: 24px;
    }
    
    .checkmark {
        width: 16px;
        height: 16px;
    }
    
    .forgot-link {
        font-size: 0.75rem;
    }
    
    .signup-link {
        margin-top: 0.6rem;
        font-size: 0.8rem;
    }
    
    .social-signin-section {
        margin: 0.6rem 0 0 0 !important;
    }
    
    .google-signin-btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem !important;
    }
    
    .custom-select {
        font-size: 0.85rem;
        padding: 0.65rem 2.5rem 0.65rem 0.9rem;
    }
    
    .drag-upload {
        padding: 0.8rem 0.5rem;
    }
    
    .drag-upload-icon {
        font-size: 1.4rem;
    }
    
    .drag-upload-text {
        font-size: 0.85rem;
        max-width: 120px;
    }
    
    .file-upload-label {
        font-size: 0.85rem;
        padding: 0.65rem 0.8rem;
    }
    
    .file-upload-label i {
        font-size: 1rem;
    }
    
    .file-upload-text {
        font-size: 0.85rem;
        max-width: 120px;
    }
}

@media (max-width: 400px) {
    html {
        overflow-x: hidden;
    }
    
    body {
        width: 100vw;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .container {
        padding: 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .login-container {
        padding: 1rem 1.1rem;
        border-radius: 18px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Further adjust shapes for very small screens */
    .shape-1 {
        width: 100px;
        height: 100px;
        top: -30px;
        right: -30px;
    }
    
    .shape-2 {
        width: 80px;
        height: 80px;
        bottom: -25px;
        left: -25px;
    }
    
    .shape-3 {
        width: 60px;
        height: 60px;
    }

    .login-header .logo {
        width: 55px;
        height: 55px;
        margin-bottom: 0.5rem;
    }
    
    .login-header .logo i {
        font-size: 1.4rem;
    }

    .login-header h2 {
        font-size: 1.1rem;
    }

    .login-header p {
        font-size: 0.75rem;
    }
    
    .form-group input {
        padding: 0.6rem 2.3rem 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .login-btn {
        height: 42px;
        font-size: 0.85rem;
    }
}

/* ===== VERY SMALL SCREENS ===== */
@media (max-height: 600px) {
    .login-header {
        margin-bottom: 0.6rem;
    }
    
    .login-header .logo {
        width: 50px;
        height: 50px;
        margin-bottom: 0.4rem;
    }
    
    .login-header h2 {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
    
    .login-header p {
        font-size: 0.7rem;
    }
    
    .form-group {
        margin-bottom: 0.4rem;
    }
    
    .form-group label {
        font-size: 0.75rem;
        margin-bottom: 0.2rem;
    }
    
    .form-group input {
        padding: 0.55rem 2.2rem 0.55rem 0.8rem;
        font-size: 0.8rem;
        border-radius: 10px;
    }
    
    .options {
        margin-bottom: 0.5rem;
    }
    
    .login-btn {
        height: 40px;
        padding: 0.6rem;
        border-radius: 10px;
    }
    
    .signup-link {
        margin-top: 0.5rem;
    }
    
    .social-signin-section {
        margin: 0.5rem 0 0 0 !important;
    }
}
