/* LifeLock Login Page Styles - Based on wowshopping.us/lifelocksales/ color scheme */
:root {
    /* Primary Colors - LifeLock Red/Black/Gold Theme */
    --primary-red: #D32F2F;
    --primary-dark: #1a1a2e;
    --accent-gold: #ffd700;
    --accent-red: #ff4444;
    --accent-dark-red: #B71C1C;
    
    /* Secondary Colors */
    --secondary-black: #0f0f1e;
    --secondary-gray: #2d2d44;
    --light-gray: #e0e0e0;
    
    /* Error Colors */
    --error-red: #D32F2F;
    --error-orange: #F57C00;
    --error-yellow: #FFA000;
    --success-green: #388E3C;
    
    /* Text Colors */
    --text-dark: #212121;
    --text-medium: #616161;
    --text-light: #ffffff;
    
    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #F8F9FA;
    --bg-dark: #1a1a1a;
    
    /* Gradients */
    --gradient-red: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--gradient-dark);
    color: var(--text-light);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.company-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--accent-gold);
}

.company-subtitle {
    font-size: 0.8rem;
    opacity: 0.9;
    color: var(--text-light);
}

.cta-button {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* Support Banner */
.support-banner {
    background: var(--gradient-red);
    padding: 20px 0;
    animation: slideDown 0.5s ease;
    box-shadow: 0 4px 20px rgba(211, 47, 47, 0.4);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.support-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.support-icon {
    font-size: 3rem;
    color: var(--text-light);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.support-info {
    flex: 1;
}

.support-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 1px;
}

.support-phone {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-light);
    text-decoration: none;
    display: inline-block;
    margin: 5px 0;
    letter-spacing: 1px;
}

.support-phone:hover {
    text-decoration: underline;
}

.support-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    opacity: 0.95;
}

.support-call-btn {
    background: var(--primary-dark);
    color: var(--accent-gold);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 3px solid var(--accent-gold);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.support-call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    background: var(--secondary-black);
}

/* Main Content */
.main-content {
    padding: 60px 0;
}

.login-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Login Container */
.login-container {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--light-gray);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.lifelock-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.lifelock-logo i {
    font-size: 2.5rem;
    color: var(--primary-red);
}

.login-title {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.login-subtitle {
    color: var(--text-medium);
    font-size: 1rem;
}

/* Error Message */
.error-message {
    background: linear-gradient(135deg, #FFEBEE 0%, #FFCDD2 100%);
    border: 2px solid var(--error-red);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.error-icon {
    text-align: center;
    margin-bottom: 15px;
}

.error-icon i {
    font-size: 3rem;
    color: var(--error-red);
    animation: errorPulse 1s infinite;
}

@keyframes errorPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.error-content {
    text-align: center;
}

.error-title {
    font-size: 1.5rem;
    color: var(--error-red);
    margin-bottom: 10px;
}

.error-code {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: 'Courier New', monospace;
    background: rgba(255, 255, 255, 0.7);
    padding: 8px 15px;
    border-radius: 8px;
    display: inline-block;
}

.error-description {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1rem;
}

.error-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

.error-action i {
    font-size: 1.5rem;
    color: var(--error-red);
}

.error-support-btn {
    background: var(--primary-red);
    color: var(--text-light);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
}

.error-support-btn:hover {
    background: var(--accent-dark-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.try-again-btn {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 12px 25px;
    border-radius: 25px;
    border: 2px solid var(--text-medium);
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.try-again-btn:hover {
    background: var(--bg-light);
    border-color: var(--text-dark);
}

/* Login Form */
.login-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.password-input-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-medium);
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: var(--primary-red);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.forgot-password {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
}

.forgot-password:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    background: var(--gradient-red);
    color: var(--text-light);
    padding: 15px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

/* Divider */
.login-divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.login-divider::before,
.login-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 42%;
    height: 1px;
    background: #E0E0E0;
}

.login-divider::before {
    left: 0;
}

.login-divider::after {
    right: 0;
}

.login-divider span {
    background: var(--bg-white);
    padding: 0 15px;
    color: var(--text-medium);
    font-weight: 600;
}

/* Alternative Login */
.alternative-login {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.alt-login-btn {
    width: 100%;
    padding: 15px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    background: var(--bg-white);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.alt-login-btn:hover {
    border-color: var(--primary-red);
    background: var(--bg-light);
}

.google-btn i {
    color: #DB4437;
}

.microsoft-btn i {
    color: #00A4EF;
}

.signup-prompt {
    text-align: center;
    color: var(--text-medium);
}

.signup-prompt a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
}

.signup-prompt a:hover {
    text-decoration: underline;
}

/* Support Container */
.support-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.support-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.support-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.support-card-icon {
    text-align: center;
    margin-bottom: 20px;
}

.support-card-icon i {
    font-size: 3rem;
    color: var(--primary-red);
}

.support-card-title {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
}

.support-card-text {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: center;
}

.support-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gradient-red);
    color: var(--text-light);
    padding: 15px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.support-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.3);
}

.support-list {
    list-style: none;
    margin-bottom: 20px;
}

.support-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-dark);
}

.support-list i {
    color: var(--success-green);
    font-size: 1.2rem;
}

.support-card-footer {
    background: #FFF3E0;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-size: 0.9rem;
    border-left: 4px solid var(--error-orange);
}

.support-card-footer i {
    color: var(--error-orange);
    font-size: 1.3rem;
}

/* Urgent Card */
.urgent-card {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    border: 2px solid var(--error-orange);
}

.urgent-icon {
    text-align: center;
    margin-bottom: 15px;
}

.urgent-icon i {
    font-size: 3rem;
    color: var(--primary-red);
    animation: ring 2s infinite;
}

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-15deg);
    }
    20%, 40% {
        transform: rotate(15deg);
    }
}

.urgent-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 15px;
}

.urgent-text {
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.8;
}

.urgent-phone {
    text-align: center;
    margin-bottom: 15px;
}

.urgent-phone i {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-right: 10px;
}

.urgent-phone a {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-red);
    text-decoration: none;
}

.urgent-phone a:hover {
    color: var(--accent-dark-red);
}

.urgent-hours {
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
}

.urgent-hours i {
    color: var(--success-green);
}

/* Error Scenarios Section */
.error-scenarios {
    background: var(--bg-white);
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    text-align: center;
    margin-bottom: 50px;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.scenario-card {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.scenario-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-red);
}

.scenario-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.scenario-icon i {
    font-size: 2.5rem;
    color: var(--text-light);
}

.error-red {
    background: var(--gradient-red);
}

.error-orange {
    background: linear-gradient(135deg, var(--error-orange) 0%, #E65100 100%);
}

.error-yellow {
    background: linear-gradient(135deg, var(--error-yellow) 0%, #F57F17 100%);
}

.error-blue {
    background: linear-gradient(135deg, #1976D2 0%, #0D47A1 100%);
}

.error-purple {
    background: linear-gradient(135deg, #8E24AA 0%, #6A1B9A 100%);
}

.error-green {
    background: linear-gradient(135deg, #43A047 0%, #2E7D32 100%);
}

.scenario-title {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: 'Courier New', monospace;
}

.scenario-description {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.scenario-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-red);
    color: var(--text-light);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.scenario-btn:hover {
    background: var(--accent-dark-red);
    transform: translateY(-2px);
}

/* Back to Site */
.back-to-site {
    background: var(--gradient-dark);
    padding: 60px 0;
    text-align: center;
    color: var(--text-light);
}

.back-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.back-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.back-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.footer-text {
    line-height: 1.8;
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-phone {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 15px;
}

.footer-phone a {
    color: var(--accent-gold);
    text-decoration: none;
}

.footer-phone a:hover {
    text-decoration: underline;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
    opacity: 1;
    padding-left: 5px;
}

.support-hours {
    line-height: 1.8;
}

.support-hours i {
    color: var(--accent-gold);
    margin-right: 8px;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-red);
    color: var(--text-light);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.footer-cta-btn:hover {
    background: var(--accent-red);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-disclaimer {
    font-size: 0.85rem;
    opacity: 0.7;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 968px) {
    .login-wrapper {
        grid-template-columns: 1fr;
    }

    .support-content {
        flex-direction: column;
        text-align: center;
    }

    .support-call-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .support-phone {
        font-size: 1.4rem;
    }

    .login-container {
        padding: 25px;
    }

    .lifelock-logo {
        font-size: 1.5rem;
    }

    .login-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .scenarios-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 1rem;
    }

    .company-subtitle {
        font-size: 0.75rem;
    }

    .support-phone {
        font-size: 1.2rem;
    }

    .support-call-btn {
        font-size: 1rem;
        padding: 12px 20px;
    }

    .login-container {
        padding: 20px;
    }

    .urgent-phone a {
        font-size: 1.4rem;
    }
}