/* ===============================
   HIREIQ REGISTER – SAFE SCOPE
================================ */
.hireiq-register {
    display: flex;
    max-width: 1100px;
    margin: 40px auto;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
    font-family: inherit;
}

/* LEFT IMAGE */
.hireiq-register__left {
    flex: 1;
    background: url('../images/12.jpg') center / cover no-repeat;
    position: relative;
}

.hireiq-register__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.25));
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hireiq-register__overlay h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.hireiq-register__overlay p {
    font-size: 14px;
    line-height: 1.5;
    opacity: .9;
}

/* RIGHT PANEL */
.hireiq-register__right {
    flex: 1;
    padding: 40px;
}

/* FORM */
.hireiq-register form {
    width: 100%;
}

.hireiq-register h3 {
    font-size: 24px;
    margin-bottom: 6px;
}

.hireiq-register .subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 24px;
}

/* INPUTS */
.hireiq-register input[type="text"],
.hireiq-register input[type="email"],
.hireiq-register input[type="password"] {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    font-size: 14px;
    box-shadow: none;
}

/* OTP */
.hireiq-register .otp-block {
    position: relative;
}

.hireiq-register .otp-block a {
    position: absolute;
    right: 0;
    top: -20px;
    font-size: 13px;
    color: #2f7bf6;
    text-decoration: none;
}

/* TWO COL */
.hireiq-register .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* TERMS */
.hireiq-register .terms {
    display: flex;
    gap: 8px;
    font-size: 13px;
    margin-top: 10px;
}

/* ERROR */
.hireiq-error {
    color: #c33;
    font-size: 13px;
    margin-top: 10px;
}

/* BUTTON */
.hireiq-register button[type="submit"] {
    width: 100%;
    background: #6b8f7b;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px;
    margin-top: 20px;
    font-size: 15px;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 900px) {
    .hireiq-register {
        flex-direction: column;
    }

    .hireiq-register__left {
        height: 240px;
    }
}
