/* ==========================================================================
   General Styles - Step by Step Travel and Tours
   ========================================================================== */
/* (Your existing body, overlay, headings, container, background-image, etc. stay exactly the same) */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background: linear-gradient(135deg, #87CEEB 0%, #E0F7FA 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: -1;
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
    color: #0056b3;
    font-weight: bold;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.background-image {
    position: fixed;
    inset: 0;
    background-image: url('/stepbystep/images/waterfront.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(65%) contrast(1.1);
    z-index: -2;
}

/* ====================== IMPROVED CARDS (Login/Register) ====================== */
.card {
    background: rgba(255, 255, 255, 0.22);   /* slightly more visible glass */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 40px 30px;                     /* breathing room for forms */
}

/* ====================== IMPROVED FORM CONTROLS ====================== */
.form-control {
    height: 68px;                          /* taller than before */
    font-size: 1.15rem;
    padding: 12px 20px;
    border-radius: 12px;
    border: 2px solid #87CEEB;
    background: rgba(255, 255, 255, 0.95);
    color: #222;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #0056b3;
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.25);
    background: white;
    outline: none;
}

/* Labels - now bold blue for travel feel */
label,
.form-label {
    color: #0056b3;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: block;
}

/* ====================== IMPROVED BUTTONS ====================== */
.btn {
    border-radius: 12px;
    font-size: 1.2rem;
    padding: 16px 40px;                    /* bigger & easier to tap */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #0056b3, #00aaff);
    color: white;
    border: none;
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.3);
    transition: all 0.3s ease;
}

.btn:hover {
    background: linear-gradient(135deg, #004080, #0088cc);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.4);
}

/* ====================== MOBILE OPTIMIZATIONS ====================== */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .card {
        background: rgba(255, 255, 255, 0.35); /* even more readable on small screens */
        padding: 30px 20px;
    }
    
    .form-control {
        height: 72px;                      /* extra tall on phones */
        font-size: 1.25rem;
    }
    
    .btn {
        padding: 18px 40px;
        font-size: 1.25rem;
    }
}