@import '_content/Blazored.Toast/Blazored.Toast.bundle.scp.css';

/* /Features/Authentication/Components/LoginPage.razor.rz.scp.css */
.login-container[b-okzj7a9a53] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, #FFD700 0%, #FFA500 100%);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.login-content[b-okzj7a9a53] {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem 1.5rem;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.logo[b-okzj7a9a53] {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.logo-image[b-okzj7a9a53] {
    height: 40px;
    width: auto;
}

.main-content[b-okzj7a9a53] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
}

.login-heading[b-okzj7a9a53] {
    font-size: 4rem;
    font-weight: 900;
    color: #000;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
    line-height: 0.9;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.login-subtitle[b-okzj7a9a53] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin: 0 0 3rem 0;
    line-height: 1.2;
}

.phone-mockup[b-okzj7a9a53] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.phone-image[b-okzj7a9a53] {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    animation: float-b-okzj7a9a53 3s ease-in-out infinite;
}

@keyframes float-b-okzj7a9a53 {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.login-actions[b-okzj7a9a53] {
    padding-bottom: env(safe-area-inset-bottom, 1rem);
}

.vipps-button[b-okzj7a9a53] {
    width: 100%;
    background: linear-gradient(135deg, #FF6B35 0%, #E63946 100%);
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 16px rgba(230, 57, 70, 0.3);
    min-height: 56px;
}

.vipps-button:hover:not(:disabled)[b-okzj7a9a53] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.vipps-button:active:not(:disabled)[b-okzj7a9a53] {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.3);
}

.vipps-button:disabled[b-okzj7a9a53] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.vipps-logo[b-okzj7a9a53] {
    height: 24px;
    width: auto;
}

.loading-spinner[b-okzj7a9a53] {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin-b-okzj7a9a53 1s linear infinite;
}

@keyframes spin-b-okzj7a9a53 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Mobile optimizations */
@media (max-width: 480px) {
    .login-content[b-okzj7a9a53] {
        padding: 1.5rem 1rem;
    }
    
    .login-heading[b-okzj7a9a53] {
        font-size: 3.5rem;
    }
    
    .login-subtitle[b-okzj7a9a53] {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .phone-image[b-okzj7a9a53] {
        max-width: 180px;
    }
}

/* Very small screens */
@media (max-width: 320px) {
    .login-heading[b-okzj7a9a53] {
        font-size: 3rem;
    }
    
    .login-subtitle[b-okzj7a9a53] {
        font-size: 1.125rem;
    }
    
    .phone-image[b-okzj7a9a53] {
        max-width: 160px;
    }
}

/* Tall screens - adjust spacing */
@media (min-height: 800px) {
    .main-content[b-okzj7a9a53] {
        padding: 2rem 1rem;
    }
    
    .phone-mockup[b-okzj7a9a53] {
        margin: 3rem 0;
    }
}

/* Wide screens - limit content width */
@media (min-width: 768px) {
    .login-content[b-okzj7a9a53] {
        max-width: 480px;
    }
}

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 600px) {
    .login-content[b-okzj7a9a53] {
        padding: 1rem 1.5rem;
    }
    
    .login-heading[b-okzj7a9a53] {
        font-size: 2.5rem;
        margin-bottom: 0.25rem;
    }
    
    .login-subtitle[b-okzj7a9a53] {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .phone-mockup[b-okzj7a9a53] {
        margin: 1rem 0;
    }
    
    .phone-image[b-okzj7a9a53] {
        max-width: 120px;
    }
    
    .logo[b-okzj7a9a53] {
        margin-bottom: 1rem;
        margin-top: 0.5rem;
    }
    
    .logo-image[b-okzj7a9a53] {
        height: 32px;
    }
}
/* /Features/Authentication/Components/RegistrationPage.razor.rz.scp.css */
.registration-container[b-jvcu7c3iuj] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, #FFD700 0%, #FFA500 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
}

.registration-content[b-jvcu7c3iuj] {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.registration-header[b-jvcu7c3iuj] {
    text-align: center;
    margin-bottom: 2rem;
}

.logo[b-jvcu7c3iuj] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.logo-text[b-jvcu7c3iuj] {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    background: #FFD700;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.logo-brand[b-jvcu7c3iuj] {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    letter-spacing: 0.1em;
}

.registration-header h1[b-jvcu7c3iuj] {
    font-size: 1.75rem;
    color: #000;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.welcome-message[b-jvcu7c3iuj] {
    color: #333;
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
}

.user-info-card[b-jvcu7c3iuj] {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #FFD700;
}

.user-info-card h2[b-jvcu7c3iuj] {
    font-size: 1.25rem;
    color: #000;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.info-grid[b-jvcu7c3iuj] {
    display: grid;
    gap: 0.75rem;
}

.info-item[b-jvcu7c3iuj] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-label[b-jvcu7c3iuj] {
    font-weight: 500;
    color: #333;
}

.info-value[b-jvcu7c3iuj] {
    font-weight: 600;
    color: #000;
}

.loading-text[b-jvcu7c3iuj] {
    color: #666;
    font-style: italic;
    margin: 0;
}

.registration-form[b-jvcu7c3iuj] {
    margin-bottom: 1.5rem;
}

.registration-form h2[b-jvcu7c3iuj] {
    font-size: 1.25rem;
    color: #000;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.registration-form p[b-jvcu7c3iuj] {
    color: #666;
    font-size: 0.9rem;
    margin: 0 0 1rem 0;
}

.form-group[b-jvcu7c3iuj] {
    margin-bottom: 1rem;
}

.form-group label[b-jvcu7c3iuj] {
    display: block;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-input[b-jvcu7c3iuj], .form-select[b-jvcu7c3iuj] {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.form-input:focus[b-jvcu7c3iuj], .form-select:focus[b-jvcu7c3iuj] {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.consent-section[b-jvcu7c3iuj] {
    margin-bottom: 1.5rem;
}

.consent-section h2[b-jvcu7c3iuj] {
    font-size: 1.25rem;
    color: #000;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.checkbox-group[b-jvcu7c3iuj] {
    display: grid;
    gap: 0.75rem;
}

.checkbox-label[b-jvcu7c3iuj] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: #333;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-input[b-jvcu7c3iuj] {
    width: 18px;
    height: 18px;
    accent-color: #FFD700;
    cursor: pointer;
}

.action-buttons[b-jvcu7c3iuj] {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.btn-primary[b-jvcu7c3iuj] {
    background: linear-gradient(135deg, #FF6B35 0%, #E63946 100%);
    border: none;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(230, 57, 70, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary:hover:not(:disabled)[b-jvcu7c3iuj] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.btn-primary:disabled[b-jvcu7c3iuj] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary[b-jvcu7c3iuj] {
    background: transparent;
    border: 2px solid #666;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover:not(:disabled)[b-jvcu7c3iuj] {
    border-color: #000;
    color: #000;
}

.btn-secondary:disabled[b-jvcu7c3iuj] {
    opacity: 0.5;
    cursor: not-allowed;
}

.loading-spinner[b-jvcu7c3iuj] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin-b-jvcu7c3iuj 1s linear infinite;
}

.error-message[b-jvcu7c3iuj] {
    background: #ffe6e6;
    border: 1px solid #ffb3b3;
    border-radius: 8px;
    padding: 0.75rem;
    color: #d32f2f;
    font-size: 0.9rem;
    text-align: center;
}

@keyframes spin-b-jvcu7c3iuj {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .registration-content[b-jvcu7c3iuj] {
        padding: 1.5rem;
        margin: 0.5rem;
        max-height: 95vh;
    }
    
    .registration-header h1[b-jvcu7c3iuj] {
        font-size: 1.5rem;
    }
    
    .user-info-card[b-jvcu7c3iuj] {
        padding: 1rem;
    }
    
    .info-item[b-jvcu7c3iuj] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}
