/* Pink theme for Checkout */
body {
    background: linear-gradient(120deg, #ffb6c1 0%, #ff69b4 100%);
    min-height: 100vh;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.checkout-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 20vh;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.12);
    margin-bottom: 2rem;
}

.checkout-hero h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    letter-spacing: 1.5px;
    animation: popIn 1s cubic-bezier(.68,-0.55,.27,1.55);
}

@keyframes popIn {
    0% { transform: scale(0.7) rotate(-10deg); opacity: 0; }
    80% { transform: scale(1.1) rotate(2deg); opacity: 1; }
    100% { transform: scale(1) rotate(0); }
}

.form-horizontal {
    background: rgba(255,255,255,0.92);
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(255,105,180,0.18);
    padding: 2rem 2.5rem 1.5rem 2.5rem;
    max-width: 520px;
    margin: 0 auto 2rem auto;
    border: 2px solid #ff69b4;
    animation: fadeInUp 0.8s ease;
}
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.form-group label, .form-group .control-label {
    color: #ff1493;
    font-weight: 600;
    font-size: 1.1rem;
}
.form-control {
    border-radius: 18px;
    border: 1.5px solid #ffb6c1;
    font-size: 1.1rem;
    padding: 0.6rem 1rem;
    margin-bottom: 0.5rem;
    background: #fff0f6;
    transition: border 0.2s;
}
.form-control:focus {
    border-color: #ff69b4;
    outline: none;
}
.btn-pink {
    background: #ff69b4;
    color: #fff;
    border: none;
    padding: 0.7rem 2.2rem;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255,105,180,0.12);
    transition: background 0.2s;
    text-decoration: none;
    margin-top: 0.5rem;
}
.btn-pink:hover {
    background: #ff1493;
}
.text-danger {
    color: #d72660 !important;
}
