/* ---- LaundrySmith Login Layout ---- */

.laundry-login-body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f5f7fb;
    color: #0d2136;
}

.laundry-login-wrapper {
    min-height: 100vh;
    display: flex;
}

/* Left hero side */
.laundry-hero {
    flex: 1.1;
    position: relative;
    background-image: url("../img/laundry-hero.jpg"); /* <-- your hero image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 3rem;
}

.laundry-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 40, 80, 0.7), rgba(0, 170, 200, 0.2));
}

.laundry-hero-content {
    position: relative;
    max-width: 420px;
    color: #ffffff;
}

.laundry-logo {
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 600;
}

.laundry-logo span {
    font-weight: 800;
}

.laundry-hero-content h1 {
    font-size: 2.3rem;
    line-height: 1.2;
    margin: 0 0 1rem;
}

.laundry-hero-content p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Right form side */
.laundry-form-panel {
    flex: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2.5rem;
}

.laundry-form-inner {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 18px;
    padding: 2.5rem 2.2rem;
    box-shadow: 0 20px 45px rgba(15, 35, 52, 0.08);
}

.laundry-form-inner h2 {
    margin: 0;
    font-size: 1.7rem;
    font-weight: 700;
}

.laundry-subtitle {
    margin: 0.4rem 0 2rem;
    font-size: 0.9rem;
    color: #6b7480;
}

/* Form controls */
.input-group {
    margin-bottom: 1.3rem;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
    color: #4a5563;
}

.laundry-input {
    border-radius: 999px;
    border: 1px solid #d1d5db;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
    background-color: #f9fafb;
}

.laundry-input:focus {
    border-color: #1fa2ff;
    box-shadow: 0 0 0 3px rgba(31, 162, 255, 0.25);
    background-color: #ffffff;
}

.is-invalid {
    border-color: #e02424 !important;
}

.invalid-feedback {
    margin-top: 0.3rem;
    font-size: 0.75rem;
    color: #e02424;
}

/* Button */
.laundry-btn-primary {
    width: 100%;
    border: none;
    border-radius: 999px;
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    background: linear-gradient(135deg, #1fa2ff, #00c4ff);
    color: #ffffff;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.15s ease;
    box-shadow: 0 12px 25px rgba(0, 162, 255, 0.35);
}

.laundry-btn-primary:hover {
    filter: brightness(1.03);
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(0, 162, 255, 0.4);
}

.laundry-btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(0, 162, 255, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .laundry-login-wrapper {
        flex-direction: column;
    }
    .laundry-hero {
        min-height: 260px;
        padding: 2.5rem 2rem;
    }
    .laundry-form-panel {
        padding: 2.5rem 1.5rem 3rem;
    }
}

@media (max-width: 600px) {
    .laundry-form-inner {
        padding: 2rem 1.5rem;
        box-shadow: none;
        background: transparent;
    }
    .laundry-form-panel {
        background: #ffffff;
    }
}

/* Logo on the left hero */
.laundry-logo-left {
    width: 260px;       /* Increased from 180px → 260px */
    height: auto;
    margin-bottom: 2.5rem;
    display: block;
}
/* Hero layout */
.laundry-hero {
    flex: 1.1;
    position: relative;
    background-image: url("../img/laundry-hero.jpg");
    background-size: cover;
    background-position: center;
    padding: 3.5rem;
    display: flex;
    align-items: center;
}

.laundry-hero-content {
    position: relative;
    color: #fff;
    max-width: 420px;
}

.laundry-hero-content h1 {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem;
}

.laundry-hero-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 0.3rem;
}

