@charset "utf-8";
/* Passwordless OTP login — self-contained styling so it renders consistently
   regardless of the surrounding Bootstrap 4 / findhouses theme. */

/* Two-column full-height layout (ported from the old /login/ page_css so this
   route is self-contained and doesn't depend on the legacy password-login CSS). */
.login__container { height: 100vh; }
@media screen and (max-width: 767px) {
    .login__container { height: auto; }
}
.parent { position: relative; }
.child  { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; }
@media screen and (max-width: 767px) {
    .child { position: relative; top: auto; transform: none; }
}

.otp-wrap {
    max-width: 380px;
    margin: 0 auto;
    text-align: center;
}

.otp-logo {
    width: 100%;
    max-width: 190px;
    margin-bottom: 26px;
}

.otp-lock {
    width: 58px;
    height: 58px;
    line-height: 58px;
    border-radius: 50%;
    background: #fff3e9;
    color: #f5811f;            /* RentGlide orange accent */
    font-size: 24px;
    margin: 0 auto 16px;
    display: block;
}

.otp-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #203364;
}

.otp-sub {
    font-size: 14px;
    color: #7a8194;
    line-height: 1.5;
    margin: 0 0 24px;
}

.otp-field {
    margin-bottom: 16px;
    text-align: left;
}

.otp-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #8a90a0;
    margin-bottom: 6px;
}

.otp-input {
    width: 100%;
    padding: 12px 14px;
    font-size: 16px;
    border: 1px solid #cfd6e4;
    border-radius: 8px;
    background: #fff;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.otp-input:focus {
    outline: none;
    border-color: #f5811f;
    box-shadow: 0 0 0 3px rgba(245, 129, 31, .15);
}

.otp-code-input {
    font-size: 1.6rem;
    letter-spacing: .4em;
    text-align: center;
    font-family: Consolas, Menlo, monospace;
}

.otp-btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: #f5811f;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    transition: background .15s ease;
}

.otp-btn:hover    { background: #e0730f; }
.otp-btn:disabled { opacity: .65; cursor: default; }

.otp-alert {
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 16px;
    text-align: left;
}
.otp-alert-info  { background: #eef4ff; color: #2a4a8a; }
.otp-alert-error { background: #fdecec; color: #b02a2a; }

.otp-trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 16px;
    margin-top: 20px;
    font-size: 12px;
    color: #9aa0b0;
}
.otp-trust-row i { color: #f5811f; margin-right: 4px; }

.otp-foot {
    font-size: 13px;
    color: #9aa0b0;
    margin-top: 22px;
}
.otp-foot a { color: #f5811f; }

.otp-links {
    font-size: 13px;
    color: #8a90a0;
    margin-top: 16px;
}
.otp-links a { color: #f5811f; font-weight: 600; }

.d-none { display: none !important; }
