/* Sportscafe - Modern Split Screen Design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Main container with unified background */
.main-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    min-height: 100vh;
    position: relative;
    padding: 2rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}


/* Left side - Sports Banner */
.banner-section {
    background: transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: white;
    z-index: 2;
    padding-right: 1.5rem;
    min-height: auto;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 2rem;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo-image {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #e2e8f0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Device Icons */
.device-icons {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin: 0.8rem 0;
    padding: 0.6rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.device-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.4rem;
    transition: all 0.3s ease;
    border-radius: 6px;
    min-width: 50px;
}

.device-item:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.device-icon {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.device-text {
    font-size: 0.65rem;
    font-weight: 600;
    color: #475569;
    text-align: center;
}

/* Right side - Form Section */
.form-section {
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
    position: relative;
    z-index: 2;
    min-height: auto;
}

.form-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 550px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    padding: 1.2rem 2rem;
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInUp 0.6s ease-out;
    margin-bottom: 0.8rem;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-container:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
}

/* Language switcher */
.language-switcher {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: rgba(15, 23, 42, 0.9);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.language-switcher:hover {
    background: rgba(15, 23, 42, 1);
    transform: translateY(-1px);
}

/* Pricing info */
.pricing-info {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 0.5rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Form title */
.form-title {
    text-align: center;
    margin-bottom: 0.8rem;
}

.form-title h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.2rem;
}

.form-title p {
    color: #64748b;
    font-size: 0.8rem;
}

/* Form styling */
.form-group {
    margin-bottom: 0.8rem;
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
}

.input-container:focus-within {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1), 0 4px 12px rgba(59, 130, 246, 0.15);
    background: white;
    transform: translateY(-1px);
}

.input-container:hover:not(:focus-within) {
    border-color: #cbd5e1;
    background: white;
    transform: translateY(-0.5px);
}

.country-code {
    background: #e2e8f0;
    color: #475569;
    padding: 1rem;
    font-weight: 700;
    border-right: 2px solid #cbd5e1;
}

.form-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 500;
    background: transparent;
    color: #1e293b;
}

.form-input::placeholder {
    color: #94a3b8;
}

/* Submit button */
.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4), 0 4px 12px rgba(59, 130, 246, 0.2);
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.submit-btn:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.1s ease;
}

.submit-btn:focus {
    outline: none;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3), 0 0 0 3px rgba(59, 130, 246, 0.2);
}

/* Response messages */
.response-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.response-message.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.response-message.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

/* Disclaimer */
.disclaimer {
    margin-top: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    font-size: 0.65rem;
    line-height: 1.3;
    color: #475569;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 550px;
}

.disclaimer-title {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.2rem;
    font-size: 0.75rem;
}

.disclaimer p {
    margin-bottom: 0.2rem;
}

.disclaimer strong {
    color: #1e293b;
}

/* Loading spinner */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin-right: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Sports decorative elements */
.sports-decoration {
    position: absolute;
    opacity: 0.1;
    pointer-events: none;
}

.sports-decoration.ball-1 {
    top: 10%;
    left: 10%;
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
}

.sports-decoration.ball-2 {
    bottom: 15%;
    right: 15%;
    font-size: 2.5rem;
    animation: float 8s ease-in-out infinite reverse;
}

.sports-decoration.trophy {
    top: 20%;
    right: 10%;
    font-size: 2rem;
    animation: bounce 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* Enhanced Mobile Responsiveness */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
    .main-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 2rem;
        max-width: 100%;
    }
    
    .form-container {
        max-width: 450px;
        padding: 1.8rem;
    }
    
    .banner-content {
        padding: 2rem 1.5rem;
        max-width: 500px;
    }
    
    .logo-image {
        max-width: 200px;
    }
    
    .banner-title {
        font-size: 3rem;
    }
    
    .banner-subtitle {
        font-size: 1.5rem;
    }
    
    .banner-section {
        justify-content: center;
        padding-right: 0;
        min-height: auto;
    }
    
    .form-section {
        justify-content: center;
        padding-left: 0;
        min-height: auto;
    }
    
    /* Remove conflicting device icon styles - handled by specific desktop/mobile classes */
}

/* Medium screens adjustment */
@media (max-width: 1024px) and (min-width: 769px) {
    .main-container {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        align-items: stretch;
    }
    
    .banner-section {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        padding: 2rem 1rem;
    }
    
    .form-section {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        padding: 2rem 1rem;
    }
    
    .form-container {
        max-width: 400px;
        padding: 2rem;
    }
}

/* Mobile and small tablets */
@media (max-width: 768px) {
    body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
    
    .main-container {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        max-height: 100vh;
        width: 100%;
        padding: 0;
        gap: 0;
        overflow-y: auto;
    }
    
    /* Hide banner section on mobile to save space */
    .banner-section {
        display: none;
    }
    
    /* Full width form section on mobile */
    .form-section {
        width: 100%;
        padding: 0.5rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        min-height: 100vh;
    }
    
    /* Hide desktop forms on mobile */
    #phoneForm,
    #pinForm {
        display: none !important;
    }
    
    /* Show mobile form */
    .mobile-form {
        display: block !important;
    }
    
    /* Compact mobile form container */
    .form-container {
        padding: 1rem;
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    
    /* Compact form elements */
    .pricing-info {
        padding: 0.4rem 0.6rem;
        margin-bottom: 0.6rem;
        font-size: 0.75rem;
        text-align: center;
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        color: white;
        border-radius: 6px;
        font-weight: 600;
    }
    
    .form-title {
        margin-bottom: 0.6rem;
        text-align: center;
    }
    
    .form-title h2 {
        font-size: 1rem;
        margin-bottom: 0.2rem;
        color: #1e293b;
    }
    
    .form-title p {
        font-size: 0.75rem;
        color: #64748b;
    }
    
    .form-group {
        margin-bottom: 0.6rem;
    }
    
    .input-container {
        height: 44px;
    }
    
    .form-input {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }
    
    .submit-btn {
        height: 44px;
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    /* Remove mobile device icon overrides - use main .device-icons class */
    
    /* Compact mobile disclaimer inside form */
    .mobile-disclaimer {
        margin-top: 0.6rem;
        padding: 0.6rem;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 6px;
        font-size: 0.6rem;
        line-height: 1.1;
        color: #475569;
        box-shadow: none;
        backdrop-filter: none;
        width: 100%;
    }
    
    .mobile-disclaimer .disclaimer-title {
        font-size: 0.65rem;
        margin-bottom: 0.2rem;
        font-weight: 700;
        color: #1e293b;
    }
    
    .mobile-disclaimer p {
        margin-bottom: 0.2rem;
    }
    
    .mobile-disclaimer p:last-child {
        margin-bottom: 0;
    }
    
    /* Hide the separate disclaimer box outside the form on mobile */
    .desktop-disclaimer {
        display: none !important;
    }
    
    /* Language switcher adjustments for mobile */
    .language-switcher {
        top: 0.5rem;
        right: 0.5rem;
        font-size: 0.75rem;
        padding: 0.3rem 0.5rem;
    }
    
    
    .banner-section {
        display: none;
    }
    
    .form-section {
        padding: 2rem 1rem;
        background: transparent;
        min-height: 100vh;
        justify-content: center;
        width: 100%;
        z-index: 2;
        padding-left: 1rem;
    }
    
    .form-container {
        padding: 2rem;
        margin: 0 auto;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(226, 232, 240, 0.5);
        max-width: 400px;
        width: 100%;
        background: white;
        border-radius: 20px;
    }
    
    /* Remove conflicting device icon styles - handled by specific desktop/mobile classes */
    
    .language-switcher {
        background: rgba(15, 23, 42, 0.9);
        top: 1rem;
        right: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        border-radius: 8px;
        backdrop-filter: blur(10px);
        z-index: 10;
    }
}

/* Additional mobile refinements */
@media (max-width: 600px) {
    .form-section {
        padding: 1.5rem 1rem;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .form-container {
        padding: 2rem;
        border-radius: 20px;
        max-width: 90%;
        width: 90%;
        margin: 0 auto;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        border: 2px solid rgba(255, 255, 255, 0.8);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
    }
    
    /* Remove conflicting device icon styles - handled by specific desktop/mobile classes */
    
    .form-title h2 {
        font-size: 1.3rem;
        font-weight: 800;
    }
    
    .form-title p {
        font-size: 0.95rem;
    }
    
    .pricing-info {
        padding: 0.8rem;
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
        font-weight: 700;
    }
    
    .input-container {
        border-radius: 12px;
        min-height: 52px;
        border-width: 2px;
    }
    
    .country-code {
        padding: 0.9rem;
        font-size: 0.95rem;
        font-weight: 700;
    }
    
    .form-input {
        padding: 0.9rem;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 12px;
        min-height: 52px;
        font-weight: 800;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    body {
        background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
        margin: 0;
        padding: 0;
    }
    
    .form-section {
        padding: 1rem;
        min-height: 100vh;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .form-container {
        padding: 2rem;
        margin: 0 auto;
        border-radius: 20px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
        border: 2px solid rgba(255, 255, 255, 0.8);
        max-width: 90%;
        width: 90%;
        background: white;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        min-height: auto;
    }
    
    /* Remove conflicting device icon styles - handled by specific desktop/mobile classes */
    
    .form-title h2 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
        font-weight: 800;
    }
    
    .form-title p {
        font-size: 1rem;
    }
    
    .pricing-info {
        padding: 1rem;
        font-size: 1rem;
        margin-bottom: 1.5rem;
        border-radius: 12px;
        font-weight: 700;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .input-container {
        border-radius: 12px;
        min-height: 56px;
        border-width: 3px;
    }
    
    .country-code {
        padding: 1rem;
        font-size: 1rem;
        font-weight: 700;
    }
    
    .form-input {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 12px;
        min-height: 56px;
        font-weight: 800;
    }
    
    .disclaimer {
        font-size: 0.9rem;
        padding: 1.25rem;
        margin-top: 1.5rem;
        border-radius: 12px;
        line-height: 1.5;
    }
    
    .disclaimer-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        font-weight: 800;
    }
    
    .disclaimer p {
        margin-bottom: 0.5rem;
    }
    
    .language-switcher {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .sports-decoration {
        display: none;
    }
}

/* iPhone 6, 7, 8 (375x667) */
@media (max-width: 375px) and (max-height: 667px) {
    .form-container {
        padding: 1rem;
        margin: 0.5rem auto;
        max-width: 95%;
        width: 95%;
    }
    
    .form-title h2 {
        font-size: 1.1rem;
    }
    
    .form-title p {
        font-size: 0.8rem;
    }
    
    .pricing-info {
        font-size: 0.8rem;
        padding: 0.6rem;
    }
    
    .device-icons {
        gap: 0.6rem;
        margin: 0.8rem 0;
        padding: 0.5rem 0;
    }
    
    .device-item {
        min-width: 45px;
        padding: 0.3rem;
    }
    
    .device-icon {
        font-size: 1.2rem;
    }
    
    .device-text {
        font-size: 0.6rem;
    }
    
    .mobile-disclaimer {
        font-size: 0.55rem;
        padding: 0.5rem;
        margin-top: 0.5rem;
    }
}

/* iPhone X, XS, 11 Pro (375x812) */
@media (max-width: 375px) and (min-height: 812px) {
    .form-container {
        padding: 1.2rem;
        margin: 1rem auto;
        max-width: 90%;
        width: 90%;
    }
    
    .form-title h2 {
        font-size: 1.2rem;
    }
    
    .pricing-info {
        font-size: 0.85rem;
        padding: 0.7rem;
    }
    
    .device-icons {
        gap: 0.7rem;
        margin: 1rem 0;
        padding: 0.6rem 0;
    }
    
    .device-item {
        min-width: 50px;
        padding: 0.4rem;
    }
    
    .device-icon {
        font-size: 1.3rem;
    }
    
    .device-text {
        font-size: 0.65rem;
    }
    
    .mobile-disclaimer {
        font-size: 0.6rem;
        padding: 0.6rem;
    }
}

/* Samsung Galaxy S8, S9, S10 (360x740) */
@media (max-width: 360px) and (min-height: 740px) {
    .form-container {
        padding: 1.1rem;
        margin: 0.8rem auto;
        max-width: 92%;
        width: 92%;
    }
    
    .form-title h2 {
        font-size: 1.1rem;
    }
    
    .pricing-info {
        font-size: 0.8rem;
        padding: 0.6rem;
    }
    
    .device-icons {
        gap: 0.5rem;
        margin: 0.8rem 0;
        padding: 0.5rem 0;
    }
    
    .device-item {
        min-width: 42px;
        padding: 0.3rem;
    }
    
    .device-icon {
        font-size: 1.1rem;
    }
    
    .device-text {
        font-size: 0.55rem;
    }
    
    .mobile-disclaimer {
        font-size: 0.55rem;
        padding: 0.5rem;
    }
}

/* Extra small screens (320px and below) */
@media (max-width: 320px) {
    .form-container {
        padding: 0.8rem;
        margin: 0.25rem auto;
        max-width: 98%;
        width: 98%;
    }
    
    .form-title h2 {
        font-size: 1rem;
    }
    
    .form-title p {
        font-size: 0.75rem;
    }
    
    .pricing-info {
        font-size: 0.7rem;
        padding: 0.5rem;
    }
    
    .device-icons {
        gap: 0.4rem;
        margin: 0.6rem 0;
        padding: 0.4rem 0;
    }
    
    .device-item {
        min-width: 38px;
        padding: 0.2rem;
    }
    
    .device-icon {
        font-size: 1rem;
    }
    
    .device-text {
        font-size: 0.5rem;
    }
    
    .mobile-disclaimer {
        font-size: 0.5rem;
        padding: 0.4rem;
        margin-top: 0.4rem;
    }
    
    .disclaimer {
        font-size: 0.5rem;
        padding: 0.4rem;
    }
}

/* RTL Support - Keep prefix on left for both languages */
html[dir="rtl"] .input-container {
    direction: ltr;
}

html[dir="rtl"] .country-code {
    border-right: 2px solid #cbd5e1;
    border-left: none;
}

html[dir="rtl"] .language-switcher {
    right: auto;
    left: 2rem;
}

/* Print styles */
@media print {
    .sports-decoration,
    .banner-section::before,
    .form-section::before {
        display: none;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.submit-btn:focus,
.form-input:focus,
.language-switcher:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Hidden class for form switching */
.hidden {
    display: none !important;
}

/* PIN input specific styling */
.pin-input {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5rem;
}

/* Pulse animation for buttons */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

/* Mobile form styling */
.mobile-form {
    display: none;
}

.mobile-pin-group {
    margin-top: 1rem;
}

/* Desktop forms container */
.desktop-forms {
    display: block;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .desktop-forms {
        display: none !important;
    }
    
    .mobile-form {
        display: block !important;
    }
    
    .mobile-form.hidden {
        display: none !important;
    }
    
    /* Remove conflicting device icon rules */
}

/* Desktop responsive adjustments */
@media (min-width: 769px) {
    /* Remove conflicting device icon rules */
}