﻿.card-icon {
    margin: 30px 0;
}

    .card-icon img {
        height: 250px;
    }

.code-inputs {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.code-input {
    width: 70px;
    height: 70px;
    background: white;
    border: none;
    border-radius: 20px;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    color: var(--color-navy);
    box-shadow: none;
    transition: all 0.3s ease;
    outline: none;
}

    .code-input:focus {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(0,102,255,0.3);
        outline: 3px solid #0066ff;
    }
