/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
    background: #fff;
    padding-bottom: 60px; /* Space for footer */
}

/* ===== HEADER STYLES ===== */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #8B0000;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1), opacity 0.4s;
    transform: translateY(0);
    opacity: 1;
}

.fixed-header.hide {
    transform: translateY(-100%);
    opacity: 0;
}

/* ===== HEADER STYLES ===== */
.header-content {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 32px 16px 20px; /* Reduced left padding */
}
 
.nav {
    display: flex;
    gap: 1.5rem;
}

.nav a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: var(--transition);
}

.nav a:hover {
    background-color: rgba(139, 0, 0, 0.05);
    color: var(--primary-color);
}

.logo-container {
    display: flex;
    align-items: center;
    margin-right: 16px;
    margin-left: 0;
}

/* Keep all other logo styles */
.logo {
    width: 70px;
    height: 70px;
    /* ... other logo styles remain the same ... */
}

.logo-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 212, 0, 0.2);
    border-radius: 50%;
    filter: blur(20px);
    animation: pulse 4s ease-in-out infinite;
}

.title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    text-align: left;
    flex: 1;
}

/* ===== LOGIN CONTAINER ===== */
.login-container {
    max-width: 400px;
    width: 100%;
    position: relative;
    z-index: 10;
    margin: 0 auto;
    padding-top: 120px;
    padding-bottom: 40px;
}

.login-card {
    position: relative;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.2), rgba(255, 255, 0, 0.2));
    border-radius: 16px;
    filter: blur(40px);
    pointer-events: none;
}

.card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 32px;
    transition: all 0.3s ease;
}

.card:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.subtitle {
    color: #8B0000;
    font-size: 1.1rem;
    margin: 0 0 24px 0;
    font-weight: bold;
    text-align: center;
}

/* ===== USER TYPE SELECTION ===== */
.user-type-section {
    margin-bottom: 32px;
}

.user-type-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 16px;
}

.user-type-buttons {
    display: flex;
    gap: 16px;
}

.user-type-btn {
    flex: 1;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
}

.user-type-btn.active {
    background: linear-gradient(45deg, #8B0000, #B22222);
    color: white;
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.3);
    transform: scale(1.05);
}

.user-type-btn:not(.active) {
    background: #f3f4f6;
    color: #374151;
}

.user-type-btn:not(.active):hover {
    background: #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}

/* ===== FORM STYLES ===== */
.form {
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group:has(#togglePassword) {
    position: relative;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 16px;
    border: 2px solid #d1d5db;
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

.form-input:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: #9ca3af;
}

.form-input:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
    transform: translateY(-1px);
}



/* ===== CHECKBOX STYLES ===== */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.checkbox-group {
    display: flex;
    align-items: center;

}

.checkbox {
    width: 20px;
    height: 20px;
    margin-right: 12px;

}

.checkbox-label {    
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.forgot-link {
    color: #b91c1c;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: #7f1d1d;
    text-decoration: underline;
}

/* ===== PASSWORD TOGGLE STYLES ===== */
#togglePassword {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
    font-size: 18px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    z-index: 10;
}

#togglePassword:hover {
    color: #8B0000;
}

#togglePassword:focus {
    outline: none;
    color: #8B0000;
}

#togglePassword i {
    pointer-events: none;
}

/* Ensure password input has padding for the icon */
#password {
    padding-right: 45px !important;
}

/* Alternative approach - if the above doesn't work perfectly */
.password-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-container input {
    flex: 1;
    padding-right: 45px;
}

.password-input-container .toggle-btn {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
    font-size: 16px;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.password-input-container .toggle-btn:hover {
    color: #8B0000;
}

/* ===== BUTTON STYLES ===== */
.submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(45deg, #8B0000, #B22222);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background: linear-gradient(45deg, #7f1d1d, #991b1b);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px) scale(1.02);
}

.submit-btn:active {
    transform: translateY(0) scale(0.98);
}

.submit-btn.loading {
    pointer-events: none; /* Prevent clicking while loading */
}

.submit-btn.loading .spinner {
    display: inline-block;
}

.submit-btn.loading i,
.submit-btn.loading span {
    visibility: hidden;
}

.spinner {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.additional-links {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

/* ===== FOOTER STYLES ===== */
.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #8B0000;
    color: white;
    text-align: center;
    padding: 12px 0;
    z-index: 99;
    opacity: 1;
}

.footer p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}



/* Animations */
 @keyframes pulse {
            0%, 100% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.05); }
        }
        /* Responsive design */
        @media (max-width: 1024px) {
            .header-content {
                padding: 12px 16px;
            }
            .logo-container {
                margin-left: 0;
                margin-right: 16px;
            }
            .title {
                font-size: 1.2rem;
            }
            .back-button {
                position: static;
                transform: none;
                margin-left: auto;
                flex-shrink: 0;
                white-space: nowrap;
            }
        }

        @media (max-width: 768px) {
            .fixed-header {
                position: fixed;
            }
            .header-content {
                flex-wrap: wrap;
                justify-content: center;
                padding: 10px 12px;
                gap: 6px;
            }
            .logo-container {
                margin: 0;
                margin-right: 10px;
            }
            .logo {
                width: 45px;
                height: 45px;
            }
            .title {
                font-size: 0.95rem;
                text-align: center;
                flex: 1 1 0;
                min-width: 0;
            }
            .back-button {
                position: static;
                transform: none;
                margin: 0;
                padding: 6px 12px;
                font-size: 0.8rem;
                flex-shrink: 0;
                white-space: nowrap;
            }
            .login-container {
                max-width: 92vw;
                padding-top: 110px;
                padding-left: 10px;
                padding-right: 10px;
            }
            .card {
                padding: 24px 18px;
                border-radius: 12px;
            }
            .subtitle {
                font-size: 1rem;
            }
            .user-type-buttons {
                gap: 8px;
            }
            .user-type-btn {
                padding: 10px 12px;
                font-size: 0.8rem;
            }
            .form-input {
                padding: 12px;
                font-size: 0.9rem;
            }
            .submit-btn {
                padding: 14px 20px;
                font-size: 0.95rem;
            }
            .footer {
                padding: 10px 0;
            }
            .footer p {
                font-size: 0.7rem;
            }
        }

        @media (max-width: 480px) {
            .header-content {
                padding: 8px 10px;
                gap: 4px;
            }
            .logo {
                width: 36px;
                height: 36px;
            }
            .title {
                font-size: 0.8rem;
                line-height: 1.2;
            }
            .back-button {
                padding: 5px 10px;
                font-size: 0.72rem;
            }
            .login-container {
                padding-top: 100px;
                padding-left: 6px;
                padding-right: 6px;
            }
            .card {
                padding: 18px 14px;
            }
            .subtitle {
                font-size: 0.9rem;
                margin-bottom: 16px;
            }
            .user-type-buttons {
                gap: 6px;
            }
            .user-type-btn {
                padding: 8px 6px;
                font-size: 0.75rem;
                border-radius: 8px;
            }
            .user-type-btn i {
                display: block;
                margin-bottom: 2px;
                font-size: 1rem;
            }
            .form-group {
                margin-bottom: 16px;
            }
            .form-label {
                font-size: 0.82rem;
            }
            .form-input {
                padding: 10px;
                font-size: 0.85rem;
                border-radius: 8px;
            }
            .form-options {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .submit-btn {
                padding: 12px 16px;
                font-size: 0.9rem;
                border-radius: 8px;
            }
            .additional-links {
                font-size: 0.82rem;
                flex-direction: column;
                align-items: center;
                gap: 4px;
            }
        }

/* ===== TOAST NOTIFICATION STYLES ===== */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast {
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 4px;
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    animation: slideIn 0.5s, fadeOut 0.5s 4.5s;
    width: 300px;
    max-width: 90vw;
}

.toast i {
    margin-right: 10px;
    font-size: 1.2em;
}

.toast-success {
    background-color: #4CAF50;
}

.toast-error {
    background-color: #F44336;
}

.fade-out {
    opacity: 0;
    transition: opacity 0.5s;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* Hide old message styles */
.old-message-container {
    display: none !important;
}

/* Add or update these visitor button styles: */

.visitor-access-btn {
    width: 100%;
    margin-top: 12px;
    padding: 12px 16px;
    background: #f8f9fa;
    color: #6c757d;
    border: 2px solid #dee2e6;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.visitor-access-btn:hover {
    background: #e9ecef;
    color: #495057;
    border-color: #adb5bd;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.visitor-access-btn.active {
    background: linear-gradient(45deg, #6c757d, #495057);
    color: white;
    border-color: #6c757d;
    box-shadow: 0 8px 20px rgba(108, 117, 125, 0.3);
    transform: scale(1.02);
}

.visitor-access-btn i {
    font-size: 1rem;
}

/* Hide password field when visitor is selected */
.form-group.password-hidden {
    display: none !important;
}

/* ===== LOCKOUT/FORM DISABLED STYLES ===== */
/* Form locked state */
.form-locked {
    opacity: 0.6;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.form-locked input[disabled],
.form-locked button[disabled] {
    background-color: #f5f5f5 !important;
    color: #999 !important;
    cursor: not-allowed !important;
    border-color: #ddd !important;
}

/* User type buttons during lockout */
.form-locked .user-type-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    background-color: #f5f5f5 !important;
    color: #999 !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Locked submit button specific styling */
.submit-btn[disabled] {
    background: #6c757d !important;
    background-image: none !important;
    border-color: #6c757d !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.submit-btn[disabled]:hover {
    background: #6c757d !important;
    transform: none !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

/* Locked out state - specific styling for lockout countdown */
.submit-btn.locked-out {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
    border-color: #dc3545 !important;
    animation: pulse-lockout 1.5s infinite ease-in-out;
}

.submit-btn.locked-out:hover {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
}

@keyframes pulse-lockout {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(0.99); }
}

/* Pulse animation for locked state */
@keyframes pulse-lock {
    0% { opacity: 0.6; }
    50% { opacity: 0.4; }
    100% { opacity: 0.6; }
}

.form-locked {
    animation: pulse-lock 2s infinite;
}

/* Lockout error message styling */
.lockout-error {
    background-color: #fee2e2;
    color: #dc2626;
    padding: 12px 16px;
    border: 1px solid #fecaca;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: shake 0.5s ease-in-out;
}

.lockout-error i {
    color: #dc2626;
    font-size: 16px;
}

/* Shake animation for lockout */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Enhanced disabled input styling */
.form-input[disabled] {
    background-color: #f9fafb !important;
    color: #9ca3af !important;
    cursor: not-allowed !important;
    border-color: #e5e7eb !important;
}

.form-input[disabled]:hover,
.form-input[disabled]:focus {
    background-color: #f9fafb !important;
    border-color: #e5e7eb !important;
    box-shadow: none !important;
    transform: none !important;
}

/* Password toggle button disabled state */
#togglePassword[disabled] {
    color: #d1d5db !important;
    cursor: not-allowed !important;
    pointer-events: none;
}

/* Ensure lockout message is visible above form elements */
.lockout-error {
    z-index: 10;
    position: relative;
}

.message-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
}

.success-message {
    background-color: #d4edda !important;
    color: #155724 !important;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex !important;
    align-items: center;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.3s ease;
    min-width: 300px;
}

.error-message {
    background-color: #f8d7da !important;
    color: #721c24 !important;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex !important;
    align-items: center;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.3s ease;
    min-width: 300px;
}

.success-message i,
.error-message i {
    margin-right: 12px;
    font-size: 1.2em;
}

/* ===== ENHANCED TOAST NOTIFICATION STYLES ===== */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}

.toast {
    background: #28a745;
    color: white;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    display: flex;
    align-items: stretch;
    min-width: 320px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    border-left: 5px solid rgba(255,255,255,0.3);
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast.hide {
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.toast-content {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    flex: 1;
}

.toast-content i {
    margin-right: 12px;
    font-size: 1.3em;
    min-width: 20px;
}

.toast-message {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
}

.toast-close {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 1.1em;
    cursor: pointer;
    padding: 16px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: all 0.2s ease;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.toast-close:hover {
    background: rgba(255,255,255,0.2);
    opacity: 1;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(255,255,255,0.4);
    border-radius: 0 0 12px 12px;
}

/* Toast type variations */
.toast.success {
    background: linear-gradient(135deg, #28a745, #20c997);
    border-left-color: #20c997;
}

.toast.error {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    border-left-color: #e74c3c;
}

.toast.warning {
    background: linear-gradient(135deg, #ffc107, #f39c12);
    border-left-color: #f39c12;
    color: #333;
}

.toast.warning .toast-close {
    color: #333;
    background: rgba(0,0,0,0.1);
}

.toast.warning .toast-close:hover {
    background: rgba(0,0,0,0.2);
}

.toast.info {
    background: linear-gradient(135deg, #17a2b8, #3498db);
    border-left-color: #3498db;
}

/* Progress bar animations */
.toast.success .toast-progress {
    animation: toast-progress-success 4s linear forwards;
}

.toast.error .toast-progress {
    animation: toast-progress-error 4s linear forwards;
}

.toast.warning .toast-progress {
    animation: toast-progress-warning 4s linear forwards;
    background: rgba(0,0,0,0.3);
}

@keyframes toast-progress-success {
    from { width: 100%; }
    to { width: 0%; }
}

@keyframes toast-progress-error {
    from { width: 100%; }
    to { width: 0%; }
}

@keyframes toast-progress-warning {
    from { width: 100%; }
    to { width: 0%; }
}

/* Responsive design */
@media (max-width: 480px) {
    .toast-container {
        left: 10px;
        right: 10px;
        top: 10px;
        max-width: none;
    }
    
.toast {
    min-width: auto;
    transform: translateY(-100%);
}

.toast.show {
    transform: translateY(0);
}

.toast.hide {
    transform: translateY(-100%);
}
}

/* Additional CSS for password toggle functionality */
.password-group {
    position: relative;
}
.password-container {
    position: relative;
    width: 100%;
}

.password-container .form-input {
    width: 100%;
    padding-right: 45px; /* Make room for the eye icon */
}

.toggle-password {
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #555;
    cursor: pointer;
    padding: 8px 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: color 0.3s ease;
    height: calc(100% - 4px);
    border-radius: 0 10px 10px 0;
}

.toggle-password:hover {
    color: #6a11cb;
}

.toggle-password:focus {
    outline: none;
}


/* Make the back button more visible and clickable */
.back-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
    z-index: 10;
}

.back-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.back-button i {
    margin-right: 6px;
}

/* These should already be in your loginpage.css file, but ensure they're present */
.input-error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15) !important;
    animation: shake 0.4s linear;
}

.input-error:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25) !important;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}