/* Screen-specific styles for Login_Registration_Screen */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
        
        body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            height: 100vh;
            width: 100%;
            overflow-x: hidden;
        }
        
        .screen {
            height: 100%;
            overflow-y: auto;
        }
        
        .content {
            padding-bottom: 80px;
        }
        
        .purple-light-bg {
            background-color: #f5f3ff;
        }
        
        .purple-tint {
            color: #7c3aed;
        }
        
        .accent-color {
            color: #ea580c;
        }
        
        .accent-bg {
            background-color: #ea580c;
        }
        
        /* Fix for bottom navigation */
        .bottom-navigation {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: white;
            border-top: 1px solid #f1f1f1;
            padding: 12px 24px;
            border-top-left-radius: 24px;
            border-top-right-radius: 24px;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
            z-index: 100;
        }
        
        .input-container {
            position: relative;
            margin-bottom: 24px;
        }
        
        .input-container.focused label {
            transform: translateY(-12px) scale(0.75);
            color: #ea580c;
        }
        
        .input-container label {
            position: absolute;
            left: 16px;
            top: 16px;
            color: #9ca3af;
            pointer-events: none;
            transition: all 0.2s ease;
            transform-origin: left top;
        }
        
        .phone-input {
            display: flex;
            border: 1px solid #e5e7eb;
            border-radius: 0.75rem;
            overflow: hidden;
        }
        
        .country-code {
            display: flex;
            align-items: center;
            padding: 0 12px;
            background-color: #f9fafb;
            border-right: 1px solid #e5e7eb;
        }
        
        .otp-inputs {
            display: flex;
            gap: 8px;
            justify-content: center;
            margin-bottom: 24px;
        }
        
        .otp-input {
            width: 40px;
            height: 48px;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            text-align: center;
            font-size: 1.25rem;
            font-weight: 600;
        }
        
        .signup-form {
            display: none;
        }
        
        .login-form {
            display: block;
        }
        
        .verification-form {
            display: none;
        }
