.pinInputContainer {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.pinInput {
    width: 48px;
    height: 48px;
    padding: 0;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    border: 1px solid #AAAAAA;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s ease;
}

.pinInput:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.pinInput.error {
    border: 1px solid #FF0000;
}

.pinInput.error:focus {
    border-color: #FF0000;
    box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.2);
}

.label {
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
    text-align: center;
}

.errorText {
    color: #FF0000;
    font-size: 12px;
    margin-top: 4px;
    text-align: center;
} 