/* Code Entry Screen Styles */
.code-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 300px;
    margin-top: 1rem;
}

.code-input {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid var(--primary-gold);
    padding: 1rem;
    border-radius: 30px;
    color: var(--text-cream);
    font-size: 1.2rem;
    text-align: center;
    outline: none;
    transition: all 0.3s ease;
}

.code-input:focus {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.code-input::placeholder {
    color: rgba(74, 59, 42, 0.6);
}

.error-msg {
    color: #d50000;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: bold;
}