/* signup.css - Signup Form Styles with Animations */

/* BODY SCROLL FIX */
html,
body {
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto !important;
}

/* SIGNUP CONTAINER - FIXED SCROLL ISSUE */
.signup-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    position: relative;
    z-index: 1;
    overflow-y: auto;
}

/* ============================================
   INTERACTIVE PARTICLES CANVAS
   ============================================ */
.particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* GLOWING BACKGROUND ORBS */
.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 15s ease-in-out infinite;
}

.glow-orb-1 {
    top: 10%;
    left: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(180, 100, 255, 0.25) 0%, transparent 70%);
    animation-delay: 0s;
}

.glow-orb-2 {
    bottom: 10%;
    right: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(120, 80, 255, 0.2) 0%, transparent 70%);
    animation-delay: -5s;
}

.glow-orb-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 100, 255, 0.15) 0%, transparent 70%);
    animation-delay: -10s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    25% {
        transform: translate(30px, -40px) scale(1.1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-20px, 30px) scale(0.9);
        opacity: 0.5;
    }

    75% {
        transform: translate(40px, 20px) scale(1.05);
        opacity: 0.7;
    }
}

/* SIGNUP CARD - GLASSMORPHISM */
.signup-card {
    width: 100%;
    max-width: 480px;
    background: rgba(15, 15, 25, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(180, 100, 255, 0.25);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow:
        0 0 80px rgba(180, 100, 255, 0.15),
        0 25px 50px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    animation: cardAppear 0.6s ease-out;
    margin: 1rem 0;
}

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* HEADER */
.signup-header {
    text-align: center;
    margin-bottom: 2rem;
}

.signup-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.signup-subtitle {
    color: var(--muted-foreground);
    font-size: 1rem;
}

/* FORM */
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* FORM GROUPS */
.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.form-group input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--foreground);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder {
    color: var(--muted-foreground);
    opacity: 0.6;
}

.form-group input:focus {
    border-color: var(--accent);
    background: rgba(180, 100, 255, 0.05);
    box-shadow:
        0 0 0 3px rgba(180, 100, 255, 0.15),
        0 0 20px rgba(180, 100, 255, 0.1);
}

/* INPUT ICONS */
.input-icon {
    position: absolute;
    left: 1rem;
    top: 2.5rem;
    font-size: 1rem;
    opacity: 0.6;
    pointer-events: none;
    transition: opacity 0.3s;
}

.form-group input:focus~.input-icon {
    opacity: 1;
}

/* PASSWORD TOGGLE */
.password-toggle {
    position: absolute;
    right: 1rem;
    top: 2.35rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.password-toggle:hover {
    opacity: 1;
}

/* ERROR STATES */
.form-group.error input {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.08);
    box-shadow:
        0 0 0 3px rgba(239, 68, 68, 0.2),
        0 0 25px rgba(239, 68, 68, 0.15);
    animation: shake 0.5s ease-in-out;
}

.form-group.error label {
    color: #ef4444;
}

.form-group.error .input-icon {
    filter: hue-rotate(-60deg) saturate(2);
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

/* ERROR MESSAGE */
.error-message {
    display: none;
    font-size: 0.75rem;
    color: #ef4444;
    margin-top: 0.375rem;
    padding-left: 0.25rem;
}

.form-group.error .error-message {
    display: block;
    animation: fadeSlideIn 0.3s ease;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FIELD HINT */
.field-hint {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.375rem;
    padding-left: 0.25rem;
    opacity: 0.7;
}

/* SUCCESS STATE */
.form-group.success input {
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

/* ============================================
   PASSWORD HELPER PANEL 
   ============================================ */
.password-helper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-top: -0.5rem;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.password-helper.visible {
    opacity: 1;
    max-height: 300px;
    margin-top: 0;
}

.helper-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.requirements-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.requirement {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--muted-foreground);
    transition: color 0.3s;
}

.requirement.met {
    color: #22c55e;
}

.requirement.met .req-text {
    text-decoration: none;
}

/* CHECK ICON SVG */
.check-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.check-svg {
    width: 100%;
    height: 100%;
}

.check-circle {
    fill: none;
    stroke: var(--border);
    stroke-width: 2;
    transition: all 0.4s ease;
}

.check-mark {
    fill: none;
    stroke: transparent;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    transition: all 0.4s ease;
}

.requirement.met .check-circle {
    fill: #22c55e;
    stroke: #22c55e;
}

.requirement.met .check-mark {
    stroke: white;
    stroke-dashoffset: 0;
}

/* ============================================
   REDESIGNED ERROR POINTER - SLEEK HAND CURSOR
   ============================================ */
.error-pointer {
    position: fixed;
    width: 64px;
    height: 64px;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform-origin: bottom center;
    transition: opacity 0.3s ease;
}

.error-pointer.visible {
    opacity: 1;
}

.error-pointer.moving {
    /* Enhanced motion blur effect */
    filter:
        drop-shadow(0 0 15px var(--accent)) drop-shadow(8px 8px 4px rgba(180, 100, 255, 0.4)) drop-shadow(16px 16px 6px rgba(180, 100, 255, 0.25)) drop-shadow(24px 24px 8px rgba(180, 100, 255, 0.1));
}

.error-pointer svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(180, 100, 255, 0.8));
}

/* Pointer bounce animation */
@keyframes pointerBounce {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.error-pointer.pointing {
    animation: pointerBounce 0.6s ease-in-out;
}

/* Pointer tapping animation */
@keyframes pointerTap {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(8px) scale(1.05);
    }
}

.error-pointer.tapping {
    animation: pointerTap 0.3s ease-in-out;
}

/* ============================================
   SUBMIT BUTTON 
   ============================================ */
.submit-btn {
    width: 100%;
    padding: 1rem;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, var(--accent), hsl(300, 100%, 60%));
    border: none;
    border-radius: 12px;
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(180, 100, 255, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn.loading .btn-text {
    opacity: 0;
}

.submit-btn.loading .btn-loader {
    display: block;
}

.btn-loader {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 3px solid rgba(0, 0, 0, 0.3);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* LOGIN LINK */
.login-link {
    text-align: center;
    font-size: 0.9rem;
    color: var(--muted-foreground);
    margin-top: 1rem;
}

.login-link a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.login-link a:hover {
    text-shadow: 0 0 10px var(--accent);
}

/* ============================================
   RESPONSIVE 
   ============================================ */
@media (max-width: 520px) {
    .signup-card {
        padding: 1.5rem 1.25rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .signup-title {
        font-size: 1.5rem;
    }
}

/* ============================================
   SUCCESS OVERLAY 
   ============================================ */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.success-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.success-content {
    text-align: center;
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    animation: pulse 1s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(34, 197, 94, 0);
    }
}

.success-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.success-message {
    color: var(--muted-foreground);
}

/* ============================================
   OTP VERIFICATION MODAL
   ============================================ */
.otp-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.otp-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.otp-modal {
    width: 100%;
    max-width: 420px;
    margin: 1rem;
    background: rgba(15, 15, 25, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(180, 100, 255, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    box-shadow:
        0 0 80px rgba(180, 100, 255, 0.2),
        0 25px 50px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.otp-overlay.visible .otp-modal {
    transform: scale(1) translateY(0);
}

/* Back Button */
.otp-back-btn {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--muted-foreground);
}

.otp-back-btn:hover {
    background: rgba(180, 100, 255, 0.1);
    border-color: var(--accent);
    color: var(--accent);
}

.otp-back-btn svg {
    width: 20px;
    height: 20px;
}

/* Header */
.otp-header {
    text-align: center;
    margin-bottom: 2rem;
}

.otp-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, rgba(180, 100, 255, 0.2), rgba(120, 80, 255, 0.2));
    border: 1px solid rgba(180, 100, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconPulse 2s ease-in-out infinite;
}

.otp-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
}

@keyframes iconPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(180, 100, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(180, 100, 255, 0);
    }
}

.otp-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.otp-subtitle {
    color: var(--muted-foreground);
    font-size: 0.95rem;
}

.otp-subtitle span {
    color: var(--accent);
    font-weight: 500;
}

/* OTP Input Container */
.otp-input-container {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.otp-digit {
    width: 48px;
    height: 56px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--border);
    border-radius: 12px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    outline: none;
    transition: all 0.3s ease;
    caret-color: var(--accent);
}

.otp-digit:focus {
    border-color: var(--accent);
    background: rgba(180, 100, 255, 0.08);
    box-shadow:
        0 0 0 3px rgba(180, 100, 255, 0.2),
        0 0 25px rgba(180, 100, 255, 0.15);
    transform: translateY(-2px);
}

.otp-digit.filled {
    border-color: var(--accent);
    background: rgba(180, 100, 255, 0.1);
}

.otp-digit.error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    animation: shake 0.5s ease-in-out;
}

.otp-separator {
    font-size: 1.5rem;
    color: var(--muted-foreground);
    opacity: 0.5;
    margin: 0 0.25rem;
}

/* OTP Error Message */
.otp-error {
    text-align: center;
    font-size: 0.875rem;
    color: #ef4444;
    min-height: 1.25rem;
    margin-bottom: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.otp-error.visible {
    opacity: 1;
}

/* Timer */
.otp-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.otp-timer svg {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

.otp-timer strong {
    color: var(--accent);
    font-weight: 600;
}

.otp-timer.expired strong {
    color: #ef4444;
}

/* Verify Button */
.otp-verify-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent), hsl(300, 100%, 60%));
    border: none;
    border-radius: 12px;
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.otp-verify-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.otp-verify-btn:hover::before {
    left: 100%;
}

.otp-verify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(180, 100, 255, 0.4);
}

.otp-verify-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.otp-verify-btn.loading .btn-text {
    opacity: 0;
}

.otp-verify-btn.loading .btn-loader {
    display: block;
}

/* Resend Section */
.otp-resend {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--muted-foreground);
}

.otp-resend-btn {
    background: none;
    border: none;
    color: var(--accent);
    font-weight: 500;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    margin-left: 0.25rem;
    transition: all 0.2s;
    border-radius: 4px;
}

.otp-resend-btn:hover {
    background: rgba(180, 100, 255, 0.1);
    text-shadow: 0 0 10px var(--accent);
}

.otp-resend-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 400px) {
    .otp-modal {
        padding: 1.5rem;
    }

    .otp-digit {
        width: 40px;
        height: 48px;
        font-size: 1.25rem;
    }

    .otp-separator {
        margin: 0 0.125rem;
    }
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 400px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    background: rgba(15, 15, 25, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    pointer-events: auto;
    animation: toast-slide-in 0.3s ease-out;
    position: relative;
    overflow: hidden;
}

@keyframes toast-slide-in {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toast.toast-exit {
    animation: toast-slide-out 0.2s ease-in forwards;
}

@keyframes toast-slide-out {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* Toast types */
.toast-error {
    border-color: rgba(239, 68, 68, 0.5);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(15, 15, 25, 0.95));
}

.toast-warning {
    border-color: rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(15, 15, 25, 0.95));
}

.toast-success {
    border-color: rgba(34, 197, 94, 0.5);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(15, 15, 25, 0.95));
}

.toast-info {
    border-color: rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(15, 15, 25, 0.95));
}

.toast-icon {
    font-size: 1.25rem;
    line-height: 1;
    flex-shrink: 0;
}

.toast-error .toast-icon {
    color: #ef4444;
}

.toast-warning .toast-icon {
    color: #f59e0b;
}

.toast-success .toast-icon {
    color: #22c55e;
}

.toast-info .toast-icon {
    color: #3b82f6;
}

.toast-content {
    flex: 1;
    min-width: 0;
}

.toast-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.toast-message {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    word-wrap: break-word;
}

.toast-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
    padding: 0;
    flex-shrink: 0;
    transition: color 0.2s;
}

.toast-close:hover {
    color: #fff;
}

/* Progress bar for auto-dismiss */
.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: currentColor;
    opacity: 0.6;
    animation: toast-progress linear forwards;
}

.toast-error .toast-progress {
    background: #ef4444;
}

.toast-warning .toast-progress {
    background: #f59e0b;
}

.toast-success .toast-progress {
    background: #22c55e;
}

.toast-info .toast-progress {
    background: #3b82f6;
}

@keyframes toast-progress {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}

/* Mobile responsive */
@media (max-width: 520px) {
    .toast-container {
        top: 0.5rem;
        right: 0.5rem;
        left: 0.5rem;
        max-width: none;
    }

    .toast {
        padding: 0.875rem 1rem;
    }
}