.hv-signup-page {
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg,#f5f8fc,#eef3f9);
}

/* WRAPPER */

.hv-signup-wrapper {
    width: 100%;
    max-width: 1080px;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    background: #fff;
    border: 1px solid #e4eaf1;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(20,35,55,.12);
}

/* LEFT */

.hv-signup-brand {
    position: relative;
    overflow: hidden;
    padding: 3.5rem;
    display: flex;
    align-items: center;
    background: linear-gradient(145deg,#101827,#172a42,#203e61);
    color: #fff;
}

.hv-signup-brand-content {
    position: relative;
    z-index: 2;
}

.hv-signup-shield {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(66,122,181,.18);
    color: #82afe5;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.hv-signup-eyebrow {
    color: #7ea9df;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.hv-signup-brand h1 {
    font-size: 3rem;
    line-height: 1.08;
    margin: .8rem 0 1rem;
}

.hv-signup-brand h1 span {
    display: block;
    color: #79a8df;
}

.hv-signup-brand p {
    color: #aebdce;
    line-height: 1.7;
}

/* FEATURES */

.hv-signup-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.hv-signup-feature {
    display: flex;
    gap: 12px;
}

.hv-signup-feature > span {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255,255,255,.07);
    color: #80aae0;
}

.hv-signup-feature strong {
    display: block;
    font-size: .82rem;
}

.hv-signup-feature small {
    color: #8192a8;
}

/* FORM */

.hv-signup-form-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.hv-signup-form {
    width: 100%;
    max-width: 400px;
}

.hv-signup-heading h2 {
    margin: 0 0 .5rem;
    color: #182438;
}

.hv-signup-heading p {
    color: #788597;
}

/* GROUP */

.hv-signup-group {
    margin-bottom: 1rem;
}

.hv-signup-group label {
    display: block;
    margin-bottom: 7px;
    font-size: .8rem;
    font-weight: 700;
}

.hv-signup-input {
    position: relative;
}

.hv-signup-input > i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa7b7;
}

.hv-signup-input input {
    width: 100%;
    box-sizing: border-box;
    height: 48px;
    padding: 0 44px 0 40px;
    border: 1px solid #dce3eb;
    border-radius: 9px;
    background: #fbfcfe;
    outline: none;
}

.hv-signup-input input:focus {
    background: #fff;
    border-color: #6e9bd2;
    box-shadow: 0 0 0 3px rgba(66,122,181,.1);
}

/* EYE */

.hv-eye {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #9aa7b7;
    cursor: pointer;
}

/* SUBMIT */

.hv-signup-submit {
    width: 100%;
    height: 49px;
    border: none;
    border-radius: 9px;
    background: linear-gradient(135deg,#427AB5,#526fc0);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(66,122,181,.22);
}

.hv-signup-submit:hover {
    transform: translateY(-2px);
}

/* ALERT */

.hv-signup-alert {
    display: flex;
    gap: 10px;
    padding: 12px;
    margin-bottom: 1rem;
    border-radius: 10px;
    background: #fff4f4;
    border: 1px solid #f3d5d5;
    color: #a43d3d;
}

/* FOOTER TEXT */

.hv-signup-login {
    text-align: center;
    margin-top: 1.5rem;
    color: #7b8797;
}

.hv-signup-login a {
    color: #427AB5;
    font-weight: 700;
    text-decoration: none;
}

.hv-signup-security {
    text-align: center;
    margin-top: 1.2rem;
    color: #9aa5b3;
    font-size: .7rem;
}

/* MOBILE */

@media(max-width:800px){

    .hv-signup-wrapper{
        grid-template-columns:1fr;
        max-width:480px;
    }

    .hv-signup-brand{
        display:none;
    }

    .hv-signup-form-panel{
        padding:2.5rem 2rem;
    }

}