/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* =========================================================
   REGISTRATION MODERN
   ========================================================= */

:root{
    --reg-blue:#1596df;
    --reg-blue-dark:#0b2f63;
    --reg-blue-soft:#eaf7ff;
    --reg-bg:#f4f9fd;
    --reg-text:#17375e;
    --reg-muted:#6f86a3;
    --reg-line:#dcebf5;
    --reg-green:#eef9d9;
}

body{
    background:var(--reg-bg);
    color:var(--reg-text);
    font-family:"Segoe UI",Arial,sans-serif;
}

.mano-reg-page{
    max-width:1100px;
    margin:0 auto;
    padding:32px 20px 60px;
}

.mano-reg-card{
    background:#fff;
    border:1px solid var(--reg-line);
    border-radius:18px;
    box-shadow:0 10px 30px rgba(31,95,145,.07);
    overflow:hidden;
}

.mano-reg-head{
    padding:30px 34px 22px;
    border-bottom:1px solid var(--reg-line);
}

.mano-reg-kicker{
    margin-bottom:7px;
    color:var(--reg-blue);
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.mano-reg-head h1{
    margin:0 0 9px;
    color:var(--reg-blue-dark);
    font-size:28px;
    line-height:1.2;
    font-weight:800;
}

.mano-reg-head p{
    max-width:760px;
    margin:0;
    color:var(--reg-muted);
    font-size:14px;
    line-height:1.55;
}

.mano-reg-notice{margin:24px 34px 0;padding:16px 18px;background:#e7f5ff;border:1px solid #b9def4;border-radius:12px;color:#345f7f}
.mano-reg-notice strong{display:block;margin-bottom:5px;color:#0879b8;font-size:14px}

.mano-reg-notice p{
    margin:4px 0;
    font-size:13px;
    line-height:1.5;
}

.mano-reg-section{
    padding:26px 34px;
}

.mano-reg-section + .mano-reg-section{
    border-top:1px solid var(--reg-line);
}

.mano-reg-section h2{
    margin:0 0 18px;
    color:var(--reg-blue-dark);
    font-size:18px;
    font-weight:800;
}

#regform{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    gap:16px 18px;
    width:100%
}

#regform .field{
    margin:0;
}

#regform .field label,
.mano-add-school label{
    display:block;
    margin-bottom:6px;
    color:#365778;
    font-size:12px;
    font-weight:600;
}

#regform input[type="text"],
#regform input[type="email"],
#regform input[type="tel"],
#regform select,
.mano-add-school input[type="text"]{
    width:100% !important;
    height:42px;
    margin:0;
    padding:0 12px;
    background:#f8fbfd;
    border:1px solid #dbe8f1;
    border-radius:9px;
    outline:none;
    color:#294a69;
    font-size:13px;
    transition:.2s ease;
}

#regform input:focus,
#regform select:focus,
.mano-add-school input:focus{
    background:#fff;
    border-color:#83caef;
    box-shadow:0 0 0 3px rgba(21,150,223,.08);
}

.mano-add-school{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    gap:10px;
    align-items:end;
}

.mano-add-school .field{
    margin:0;
}

#addoubutton,
#addou,
#submitBtn{
    border:0;
    border-radius:9px;
    cursor:pointer;
    font-weight:700;
    transition:.18s ease;
}

#addoubutton,
#addou{
    min-height:42px;
    padding:0 16px;
    background:var(--reg-blue-soft);
    color:var(--reg-blue);
}

#addoubutton:hover,
#addou:hover{
    background:var(--reg-blue);
    color:#fff;
}

#addou{
    margin-top:8px;
}

.mano-oferta{
    grid-column:1/-1;
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin:8px 0 0;
    padding:14px 16px;
    background:#f8fbfd;
    border:1px solid var(--reg-line);
    border-radius:10px;
}

.mano-oferta input{
    margin-top:3px;
    flex:0 0 auto;
}

.mano-oferta label{
    margin:0;
    color:#58718d;
    font-size:12px;
    line-height:1.5;
    font-weight:400;
}

.mano-oferta a{
    color:var(--reg-blue);
    font-weight:600;
}

#submitBtn{
    grid-column:1/-1;
    min-height:44px;
    padding:0 24px;
    background:linear-gradient(135deg,#1ba3e8,#168bd0);
    color:#fff;
    font-size:14px;
    box-shadow:0 8px 18px rgba(21,150,223,.15);
}

#submitBtn:hover:not(:disabled){
    transform:translateY(-1px);
    box-shadow:0 10px 22px rgba(21,150,223,.22);
}

#submitBtn:disabled{
    opacity:.45;
    cursor:not-allowed;
    box-shadow:none;
}

#errorInfo{
    grid-column:1/-1;
}

@media(max-width:760px){
    .mano-reg-page{padding:18px 12px 40px}
    .mano-reg-head,.mano-reg-section{padding:22px 18px}
    .mano-reg-notice{margin:18px 18px 0}
    .mano-reg-head h1{font-size:23px}
    #regform{grid-template-columns:1fr}
    .mano-add-school{grid-template-columns:1fr}
    .mano-oferta,#submitBtn,#errorInfo{grid-column:auto}
}
#regform{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    gap:16px 18px;
    width:100%
}

#regform .field,.mano-reg-card,.mano-reg-section{
    min-width:0
}

#regform .field{
    width:100%;box-sizing:border-box
}

#regform input[type="text"],#regform input[type="email"],#regform input[type="tel"],#regform select{
    display:block!important;
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    box-sizing:border-box!important;
    margin:0!important;
    float:none!important
}