﻿.mud-typography-h3 {
    margin-bottom: 1.5rem;
}

.mud-button {
    box-shadow: none;
}

.skew {
    transform: skewY(-12deg);
}

.hover-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.hover-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    filter: brightness(1.05);
    cursor: pointer;
}

.bounceIn {
    opacity: 0;
    animation-delay: 0.5s;
    animation-duration: 0.5s;
    animation-name: bounceIn;
    animation-fill-mode: forwards;
}

.bounceOut {
    animation-duration: 0.5s;
    animation-name: bounceOut;
    animation-fill-mode: forwards;
}

.backInDown {
    opacity: 0;
    animation-delay: 0.5s;
    animation-duration: 0.5s;
    animation-name: backInDown;
    animation-fill-mode: forwards;
}

.backOutDown {
    animation-duration: 0.5s;
    animation-name: backOutDown;
    animation-fill-mode: forwards;
}

.rotateIn {
    opacity: 0;
    animation-delay: 0.5s;
    animation-duration: 0.5s;
    animation-name: rotateIn;
    animation-fill-mode: forwards;
}

.rotateOut {
    animation-duration: 0.5s;
    animation-name: rotateOut;
    animation-fill-mode: forwards;
}

.p-relative {
    position: relative;
}

@media print {
    #qr-print-section {
        display: block !important;
        page-break-after: avoid;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
        background-color: transparent;
    }

    body * {
        visibility: hidden;
    }

    #qr-print-section, #qr-print-section * {
        visibility: visible;
    }

    #qr-print-section {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: auto;
    }
}

/* OTP verification code input */
.otp-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 28px 16px 24px;
    margin: 4px 0 8px;
    background: #fafafa;
    border: 1px solid #e8d5d8;
    border-radius: 10px;
}

.otp-inputs {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
}

.otp-input {
    width: 52px;
    height: 64px;
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    border: 2px solid rgba(0, 0, 0, 0.23);
    border-radius: 6px;
    outline: none;
    background: #fff;
    color: rgba(0, 0, 0, 0.87);
    caret-color: transparent;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    -moz-appearance: textfield;
    appearance: textfield;
}

.otp-input::-webkit-outer-spin-button,
.otp-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.otp-input:focus {
    border-color: #B76E79;
    box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.18);
}

.otp-input.filled {
    border-color: #B76E79;
    background: #FDF0F0;
}

.otp-input:disabled {
    background: rgba(0, 0, 0, 0.06);
    color: rgba(0, 0, 0, 0.38);
    border-color: rgba(0, 0, 0, 0.26);
    cursor: not-allowed;
}

@media (max-width: 480px) {
    .otp-container {
        padding: 20px 8px 16px;
        gap: 16px;
    }

    .otp-inputs {
        gap: 6px;
    }

    .otp-input {
        width: 44px;
        height: 54px;
        font-size: 1.4rem;
    }
}
