﻿.verify-pin-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: 20px;
}

.verify-card {
    background: rgba(11, 21, 86, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 60px 50px;
    max-width: 520px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.verify-icon {
    margin-bottom: 24px;
}

.verify-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.verify-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

    .verify-subtitle strong {
        color: #10E6B2;
        font-weight: 600;
    }

.pin-input-wrapper {
    margin: 0 auto;
    max-width: 350px;
}

.pin-input {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 4px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}

    .pin-input::placeholder {
        color: rgba(255, 255, 255, 0.35);
        letter-spacing: 1px;
        font-size: 16px;
    }

    .pin-input:focus {
        border-color: #005FFF;
        box-shadow: 0 0 0 4px rgba(0, 95, 255, 0.2);
    }

.error-text {
    color: #FF5252;
    font-size: 14px;
    font-weight: 600;
    margin-top: 16px;
    margin-bottom: 0;
}

@@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }

    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-8px);
    }

    20%, 40%, 60%, 80% {
        transform: translateX(8px);
    }
}

.pin-input-wrapper.shake {
    animation: shake 0.5s ease-in-out;
}

    .pin-input-wrapper.shake .pin-input {
        border-color: #FF5252;
    }