/* ── Guerlain login — shop 5 override ──────────────────────── */

/* Background */
body#login .bg-login {
    background-image: url(../img/bg-guerlain.jpg);
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Reset base padding */
body#login #layout-login {
    padding-top: 0;
    width: 100%;
}

/* ── Logo box ─────────────────────────────────────────────── */
.guerlain-logo-box {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid rgba(0, 0, 0, 0.8);
    padding: 14px 48px;
    white-space: nowrap;
}

.guerlain-logo-box span {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}

/* ── Form ─────────────────────────────────────────────────── */
.guerlain-form {
    text-align: center;
    width: 100%;
}

.guerlain-form .form-group {
    text-align: center;
    width: 100%;
    margin-bottom: 0;
}

/* ── Title ────────────────────────────────────────────────── */
.guerlain-title {
    color: #000;
    font-size: 1.75rem;
    font-weight: 300;
    letter-spacing: 7px;
    text-transform: uppercase;
    margin-bottom: 48px;
}

/* ── Label ────────────────────────────────────────────────── */
.guerlain-label {
    display: block;
    color: rgba(0, 0, 0, 0.85);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}

/* ── Error ────────────────────────────────────────────────── */
.guerlain-error {
    color: rgba(255, 10, 10, 0.95);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* ── Input group ──────────────────────────────────────────── */
.guerlain-input-group {
    display: inline-flex !important;
    width: 440px;
    max-width: 80vw;
}

/* ── Input ────────────────────────────────────────────────── */
.guerlain-input {
    background: transparent !important;
    border: 1px solid rgba(0, 0, 0, 0.65) !important;
    border-right: none !important;
    border-radius: 0 !important;
    color: #000 !important;
    height: 46px;
    font-size: 13px;
    letter-spacing: 2px;
    box-shadow: none !important;
}

.guerlain-input::placeholder {
    color: rgba(0, 0, 0, 0.35);
}

.guerlain-input:focus {
    background: transparent !important;
    box-shadow: none !important;
    border-color: rgba(0, 0, 0, 0.95) !important;
    outline: none;
}

/* ── Submit button ────────────────────────────────────────── */
.guerlain-btn {
    background: transparent !important;
    border: 1px solid rgba(0, 0, 0, 0.65) !important;
    border-left: none !important;
    border-radius: 0 !important;
    color: #000 !important;
    width: 50px;
    height: 46px;
    font-size: 20px;
    line-height: 1;
    transition: background 0.2s ease;
}

.guerlain-btn:hover,
.guerlain-btn:focus {
    background: rgba(0, 0, 0, 0.12) !important;
    color: #000 !important;
    box-shadow: none !important;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
    .guerlain-title {
        font-size: 1.2rem;
        letter-spacing: 4px;
    }

    .guerlain-logo-box {
        padding: 12px 28px;
        top: 24px;
    }

    .guerlain-logo-box span {
        font-size: 11px;
        letter-spacing: 3px;
    }
}
