.gift-card-form {
    max-width: 600px;
    margin: 2em auto;
    padding: 2em;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.gift-card-form .form-row {
    margin-bottom: 1.5em;
}

.gift-card-form label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: 600;
    color: #333;
}

.gift-card-form input[type="text"],
.gift-card-form input[type="password"],
.gift-card-form input[type="email"],
.gift-card-form input[type="tel"],
.gift-card-form input[type="number"] {
    width: 100%;
    padding: 0.8em;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.gift-card-form input:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.2);
}

.gift-card-form .button {
    background: #0073aa;
    color: #fff;
    padding: 1em 2em;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.gift-card-form .button:hover {
    background: #005177;
}

.gift-card-form .button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.gift-card-form .error-message {
    color: #dc3232;
    font-size: 0.9em;
    margin-top: 0.5em;
    min-height: 1.2em;
}

.gift-card-form .form-message {
    margin-top: 1em;
    padding: 1em;
    border-radius: 4px;
    text-align: center;
}

.gift-card-form .form-message.error {
    background: #dc3232;
    color: #fff;
}

.gift-card-form .form-message.success {
    background: #46b450;
    color: #fff;
}

/* Two-step form styles */
.gift-card-form .form-step {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gift-card-form .form-step.active {
    display: block;
    opacity: 1;
}

.gift-card-form .button-group {
    display: flex;
    justify-content: space-between;
    gap: 1em;
}

.gift-card-form .button-group .button {
    flex: 1;
}

.gift-card-form .prev-step {
    background: #666;
}

.gift-card-form .prev-step:hover {
    background: #555;
}

.gift-card-form .balance-display {
    font-size: 1.5em;
    font-weight: 600;
    color: #0073aa;
    text-align: center;
    padding: 0.5em;
    background: #f8f9fa;
    border-radius: 4px;
    margin-bottom: 1em;
}

/* Responsive Design */
@media screen and (max-width: 600px) {
    .gift-card-form {
        margin: 1em;
        padding: 1em;
    }
    
    .gift-card-form .button-group {
        flex-direction: column;
    }
    
    .gift-card-form .button {
        width: 100%;
        margin-bottom: 0.5em;
    }
} 