/* ==========================================================================
   hidrologi.net — Modern v2.5 Authentication
   ========================================================================== */

.mv2-auth-page{
    background:#f5fafe;
}

.mv2-auth-main{
    min-height:calc(100vh - 56px);
    display:flex;
    align-items:center;
    padding:42px 0;
    background:
        radial-gradient(circle at 8% 8%,rgba(8,119,217,.08),transparent 28%),
        radial-gradient(circle at 94% 88%,rgba(22,136,110,.08),transparent 26%),
        #f5fafe;
}

.mv2-auth-layout{
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    overflow:hidden;
    min-height:560px;
    border:1px solid #dce8f1;
    border-radius:18px;
    background:#fff;
    box-shadow:0 22px 55px rgba(21,70,108,.11);
}

.mv2-auth-brand{
    position:relative;
    overflow:hidden;
    padding:38px 34px;
    color:#fff;
    background:
        radial-gradient(circle at 100% 0%,rgba(41,186,161,.30),transparent 28%),
        linear-gradient(145deg,#07385f 0%,#0871c8 67%,#0b796f 100%);
}

.mv2-auth-brand::after{
    content:"";
    position:absolute;
    right:-100px;
    bottom:-110px;
    width:300px;
    height:300px;
    border:1px solid rgba(255,255,255,.11);
    border-radius:50%;
    box-shadow:
        0 0 0 42px rgba(255,255,255,.025),
        0 0 0 84px rgba(255,255,255,.017);
}

.mv2-auth-brand > *{
    position:relative;
    z-index:2;
}

.mv2-auth-brand img{
    width:205px;
    height:auto;
    padding:7px 10px;
    border-radius:9px;
    background:#fff;
}

.mv2-auth-brand h1{
    max-width:400px;
    margin:56px 0 0;
    color:#fff;
    font-size:34px;
    line-height:1.08;
    letter-spacing:-.8px;
}

.mv2-auth-brand p{
    max-width:390px;
    margin:15px 0 0;
    color:#d8e9f3;
    font-size:12px;
    line-height:1.65;
}

.mv2-auth-benefits{
    display:grid;
    gap:10px;
    margin-top:28px;
}

.mv2-auth-benefits span{
    display:flex;
    align-items:center;
    gap:8px;
    color:#eff8fc;
    font-size:10px;
}

.mv2-auth-benefits span::before{
    content:"✓";
    width:20px;
    height:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    font-size:9px;
    font-weight:900;
}

.mv2-auth-panel{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:38px 44px;
}

.mv2-auth-form-wrap{
    width:100%;
    max-width:390px;
}

.mv2-auth-kicker{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#0874d5;
    font-size:9px;
    font-weight:900;
    letter-spacing:.09em;
    text-transform:uppercase;
}

.mv2-auth-kicker::before{
    content:"";
    width:18px;
    height:2px;
    background:#f58a25;
}

.mv2-auth-form-wrap h2{
    margin:8px 0 0;
    color:#082a55;
    font-size:27px;
    line-height:1.1;
}

.mv2-auth-form-wrap > p{
    margin:8px 0 22px;
    color:#5c758b;
    font-size:10px;
    line-height:1.55;
}

.mv2-auth-alert{
    margin-bottom:14px;
    padding:10px 12px;
    border:1px solid #f0ccd1;
    border-radius:8px;
    background:#fff5f6;
    color:#9b414b;
    font-size:9px;
    line-height:1.45;
}

.mv2-auth-field{
    display:block;
    margin-top:13px;
}

.mv2-auth-field > span{
    display:block;
    margin-bottom:6px;
    color:#405f7a;
    font-size:9px;
    font-weight:800;
}

.mv2-auth-input-wrap{
    position:relative;
}

.mv2-auth-field input{
    width:100%;
    height:43px;
    padding:0 12px;
    border:1px solid #d5e3ed;
    border-radius:9px;
    background:#fbfdff;
    color:#294b66;
    outline:0;
    font:inherit;
    font-size:11px;
}

.mv2-auth-field input:focus{
    border-color:#58a9ef;
    box-shadow:0 0 0 3px rgba(53,158,235,.10);
    background:#fff;
}

.mv2-auth-input-wrap input{
    padding-right:60px;
}

.mv2-auth-toggle{
    position:absolute;
    right:7px;
    top:50%;
    transform:translateY(-50%);
    padding:5px 7px;
    border:0;
    background:transparent;
    color:#0871ca;
    font:inherit;
    font-size:8px;
    font-weight:900;
    cursor:pointer;
}

.mv2-auth-check{
    margin-top:14px;
    display:flex;
    align-items:flex-start;
    gap:8px;
    color:#60788e;
    font-size:9px;
    line-height:1.45;
}

.mv2-auth-check input{
    margin-top:2px;
}

.mv2-auth-submit{
    width:100%;
    height:42px;
    margin-top:17px;
    border:0;
    border-radius:9px;
    background:linear-gradient(180deg,#1688ec,#0871d7);
    color:#fff;
    font:inherit;
    font-size:10px;
    font-weight:900;
    cursor:pointer;
    box-shadow:0 7px 16px rgba(8,113,215,.18);
}

.mv2-auth-submit:hover{
    background:linear-gradient(180deg,#0878dc,#0566c3);
}

.mv2-auth-links{
    display:flex;
    justify-content:space-between;
    gap:10px;
    margin-top:14px;
    color:#637b90;
    font-size:9px;
}

.mv2-auth-links a{
    color:#0871ca;
    font-weight:800;
}

.mv2-auth-divider{
    height:1px;
    margin:20px 0 15px;
    background:#e6edf3;
}

.mv2-auth-secondary{
    margin:0;
    text-align:center;
    color:#667d91;
    font-size:9px;
}

.mv2-auth-secondary a{
    color:#0871ca;
    font-weight:900;
}

@media(max-width:850px){
    .mv2-auth-layout{
        grid-template-columns:1fr;
        max-width:560px;
        margin:0 auto;
    }

    .mv2-auth-brand{
        display:none;
    }

    .mv2-auth-panel{
        padding:32px 28px;
    }
}

@media(max-width:520px){
    .mv2-auth-main{
        padding:22px 0;
        align-items:flex-start;
    }

    .mv2-auth-layout{
        border-radius:14px;
    }

    .mv2-auth-panel{
        padding:25px 18px;
    }

    .mv2-auth-form-wrap h2{
        font-size:24px;
    }
}


/* ==========================================================================
   Modern v2.5.1 — Sign-up refinement
   ========================================================================== */

.mv2-auth-layout-signup{min-height:535px}
.mv2-auth-brand-signup{min-height:535px;padding:34px 32px}

.mv2-auth-brand-logo{
    display:inline-flex;
    align-items:center;
}

.mv2-auth-brand-signup .mv2-auth-brand-logo img{
    width:210px;
    height:auto;
    padding:0;
    border-radius:0;
    background:transparent;
}

.mv2-auth-brand-copy{
    position:relative;
    z-index:3;
}

.mv2-auth-brand-signup h1{
    margin-top:48px;
    font-size:31px;
    line-height:1.1;
}

.mv2-auth-brand-signup p{
    margin-top:13px;
    font-size:11px;
}

.mv2-auth-brand-signup .mv2-auth-benefits{
    margin-top:24px;
    gap:9px;
}

.mv2-auth-brand-signup .mv2-auth-benefits span{
    font-size:9.5px;
}

.mv2-auth-network-art{
    position:absolute;
    z-index:1;
    right:-12px;
    bottom:-8px;
    width:270px;
    height:180px;
    opacity:.30;
    pointer-events:none;
}

.mv2-auth-network-art::before{
    content:"";
    position:absolute;
    right:-65px;
    bottom:-68px;
    width:210px;
    height:210px;
    border:1px solid rgba(255,255,255,.36);
    border-radius:50%;
    box-shadow:
        0 0 0 38px rgba(255,255,255,.04),
        0 0 0 76px rgba(255,255,255,.025);
}

.mv2-auth-network-line{
    position:absolute;
    height:1px;
    background:rgba(255,255,255,.58);
    transform-origin:left center;
}

.mv2-auth-network-line.line-a{
    width:145px;left:24px;top:87px;transform:rotate(-19deg)
}

.mv2-auth-network-line.line-b{
    width:116px;left:118px;top:45px;transform:rotate(31deg)
}

.mv2-auth-network-line.line-c{
    width:115px;left:83px;top:125px;transform:rotate(-7deg)
}

.mv2-auth-network-art i{
    position:absolute;
    width:9px;
    height:9px;
    border:2px solid rgba(255,255,255,.96);
    border-radius:50%;
    background:#66d5d0;
    box-shadow:0 0 0 7px rgba(255,255,255,.08);
}

.mv2-auth-network-art .node-a{left:19px;top:80px}
.mv2-auth-network-art .node-b{left:111px;top:43px;background:#f58a25}
.mv2-auth-network-art .node-c{left:195px;top:95px}
.mv2-auth-network-art .node-d{left:79px;top:121px;background:#8dd6ff}

.mv2-auth-panel-signup{padding:28px 42px}

.mv2-auth-panel-signup .mv2-auth-form-wrap{max-width:385px}

.mv2-auth-panel-signup .mv2-auth-form-wrap > p{margin-bottom:16px}

.mv2-auth-panel-signup .mv2-auth-field{margin-top:10px}

.mv2-auth-panel-signup .mv2-auth-field input{height:41px}

.mv2-auth-check a{
    color:#0871ca;
    font-weight:900;
    text-decoration:underline;
    text-decoration-color:rgba(8,113,202,.32);
    text-underline-offset:2px;
}

.mv2-auth-check a:hover{
    color:#f07f23;
    text-decoration-color:#f07f23;
}

.mv2-auth-submit-accent{
    position:relative;
    overflow:hidden;
    transition:transform .16s ease,box-shadow .16s ease,background .16s ease;
}

.mv2-auth-submit-accent::before{
    content:"";
    position:absolute;
    left:0;top:0;bottom:0;
    width:4px;
    background:#f58a25;
}

.mv2-auth-submit-accent i{
    width:6px;
    height:6px;
    margin-left:7px;
    border-top:1.5px solid currentColor;
    border-right:1.5px solid currentColor;
    transform:rotate(45deg);
}

.mv2-auth-submit-accent:hover{
    transform:translateY(-1px);
    box-shadow:0 10px 20px rgba(8,113,215,.22);
}

.mv2-auth-mobile-logo{
    display:none;
    margin:0 auto 22px;
    width:175px;
}

.mv2-auth-mobile-logo img{width:100%;height:auto}

.mv2-auth-back-home{
    display:block;
    width:max-content;
    margin:15px auto 0;
    color:#7b8fa1;
    font-size:8px;
}

.mv2-auth-back-home:hover{color:#0871ca}

@media(max-width:850px){
    .mv2-auth-layout-signup{min-height:0}
    .mv2-auth-brand-signup{display:none}
    .mv2-auth-panel-signup{padding:28px 24px 25px}
    .mv2-auth-mobile-logo{display:block}
}

@media(max-width:520px){
    .mv2-auth-panel-signup{padding:22px 17px 22px}
    .mv2-auth-mobile-logo{width:155px;margin-bottom:18px}
    .mv2-auth-panel-signup .mv2-auth-field{margin-top:9px}
    .mv2-auth-panel-signup .mv2-auth-field input{height:40px}
    .mv2-auth-check{font-size:8.5px}
    .mv2-auth-submit{margin-top:14px}
}

.mv2-auth-success{margin-bottom:14px;padding:10px 12px;border:1px solid #c8e8da;border-radius:8px;background:#f1fbf6;color:#147257;font-size:9px;line-height:1.45}.mv2-auth-submit-link{display:flex;align-items:center;justify-content:center;text-decoration:none}
