/* Transcribed directly from file:///C:/Users/dhenzy08/OneDrive/Documents/2.html
   to match that reference exactly -- class names, colors, and spacing are
   copied verbatim rather than adapted to this app's usual Bootstrap/Nifty
   theme, since this page is meant to look identical to that file. */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter',sans-serif;
}

html, body{
    height:100%;
}

body{
    background:#0e2318;
    padding:0;
    overflow:hidden;
    display:flex;
    flex-direction:column;
}

/*==========================
MAIN CONTAINER
==========================*/

.container{
    display:grid;
    grid-template-columns:65% 35%;
    flex:1;
    min-height:0;
    gap:0;              /* No space between panels */
    align-items:stretch;

    border-radius:0;
    overflow:hidden;
    box-shadow:0 40px 80px -25px rgba(0,0,0,.55);

    position:relative;
    z-index:2;
}

/*==========================
LEFT PANEL
==========================*/

.left{
    position:relative;
    color:#1a2e44;
    overflow:hidden;

    z-index:2;
}

.left-panel-img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.logo{

    display:flex;
    align-items:center;
    gap:14px;
}

.logo img{

    width:56px;
    height:56px;
    flex-shrink:0;
}

.logo-text{

    font-size:20px;
    font-weight:800;
    line-height:1.25;
}

.logo-text span{

    display:block;
    font-size:12.5px;
    letter-spacing:2px;
    font-weight:300;
}

.hero{

    margin-top:40px;
}

.hero h1{

    font-size:42px;
    line-height:1.15;
    font-weight:800;
}

.hero h1 span{

    color:#0a7d42;
}

.hero p{

    margin-top:14px;
    width:70%;
    font-size:15px;
    line-height:1.6;
    color:#000;
}

.cards{

    margin-top:20px;
    display:flex;
    flex-direction:column;
    gap:12px;
    width:420px;
}

.card{

    /* Solid, crisp white card (not the frosted/translucent look 2.html
       had) with its own soft shadow -- same "clean card" style as .login
       on the right panel, so both panels read as one consistent design. */
    background:rgba(255,255,255,.96);
    border-radius:16px;
    padding:12px;
    display:flex;
    gap:14px;
    align-items:center;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
}

.icon{

    width:42px;
    height:42px;
    background:#0a7d42;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:18px;
    flex-shrink:0;
}

.card h3{

    margin-bottom:3px;
    font-size:15px;
    color:#0a7d42;
}

.card p{

    color:#000;
    font-size:12.5px;
}

.student{

    position:absolute;
    right:40px;
    bottom:120px;

    width:260px;
    height:330px;

    border:2px dashed rgba(255,255,255,.5);

    border-radius:25px;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    color:white;
}

.quote{

    position:absolute;
    left:45px;
    bottom:45px;

    font-size:15px;
    font-style:italic;
    color:#000;
}

/*==========================
RIGHT PANEL
==========================*/

.right{
    padding:14px 40px;
    background:#f7f9fb;

    margin-left:0;      /* Remove overlap */
    padding-left:40px;  /* Normal padding */

    position:relative;
    z-index:1;

    overflow-y:auto;

    /* .notice and .support stay their natural size at top/bottom; .login
       (below) grows to fill whatever height is left between them, so the
       panel is maximized rather than leaving dead space anywhere. Sized
       to fit without needing overflow-y to actually kick in at common
       screen heights -- it's kept as a fallback for unusually short
       screens, not the primary way this fits. */
    display:flex;
    flex-direction:column;
}

.notice{

    background:white;

    padding:10px 20px;

    border-radius:40px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    margin-bottom:14px;

    font-size:14px;
}

.login{

    background:white;

    border-radius:25px;

    padding:18px 24px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    /* Grows to fill whatever space .notice/.support don't use, with its
       own content centered inside -- this is what "maximizes" the panel. */
    flex:1 1 auto;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.login h2{

    text-align:center;
    color:#0a7d42;
    margin:0 0 16px;
    font-size:22px;
    font-weight:800;
}

.login p{

    text-align:center;
    color:#000;
    margin:0 0 16px;
    font-size:14.5px;
}

label{

    display:block;
    margin-bottom:6px;
    font-weight:600;
    font-size:14px;
}

input{

    width:100%;
    padding:11px 14px;

    border:1px solid #d7dde5;

    border-radius:10px;

    margin-bottom:12px;

    font-size:14px;
}

.captcha-row{

    display:flex;
    align-items:center;
    gap:10px;

    margin-bottom:10px;
}

.captcha-row img{

    height:60px;
    border:1px solid #d7dde5;
    border-radius:8px;
}

.captcha-row button{

    width:38px;
    height:38px;
    flex-shrink:0;

    background:white;
    border:1px solid #d7dde5;
    border-radius:8px;

    font-size:18px;
    color:#0a7d42;
    cursor:pointer;
}

.captcha-row button:hover{

    background:#f2f7f4;
}

.options{

    display:flex;
    justify-content:flex-end;
    align-items:center;

    margin-bottom:12px;

    font-size:14px;
}

.options a{

    color:#0a7d42;
    text-decoration:none;
}

.signin{

    width:100%;

    padding:11px;

    background:#0a7d42;

    color:white;

    border:none;

    border-radius:10px;

    font-size:16px;

    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
}

.signin.is-loading{
    opacity:0.85;
    cursor:not-allowed;
}

.signin .btn-spinner{
    display:none;
    width:16px;
    height:16px;
    border:2px solid rgba(255,255,255,0.4);
    border-top-color:#fff;
    border-radius:50%;
    animation:signinSpin .7s linear infinite;
}

.signin.is-loading .btn-spinner{
    display:inline-block;
}

@keyframes signinSpin{
    to{ transform:rotate(360deg); }
}

/* .login p (a general rule for the "Sign in to continue..." paragraph)
   has higher specificity (class+type) than a plain .create-caption class
   would, so this needs to be p.create-caption to actually win instead of
   silently falling back to .login p's margin values. */
p.create-caption{

    text-align:center;
    color:#000;
    font-size:13.5px;
    margin-top:14px;
    margin-bottom:8px;
}

.create{

    margin-top:0;

    display:flex;
    justify-content:center;
}

.create button,
.create a{

    width:auto;

    padding:9px 24px;

    background:white;

    border:2px solid #0a7d42;

    color:#0a7d42;

    border-radius:10px;

    font-size:14px;

    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
}

.support{

    margin-top:8px;

    background:white;

    border-radius:20px;

    padding:16px 12px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.support > div{

    padding:0 12px;
}

.support > div:not(:last-child){

    border-right:1px solid rgba(0,0,0,.08);
}

.support h4{

    color:#0a7d42;
    margin-bottom:8px;
    font-size:15px;
}

.support p{

    font-size:13px;
    color:#000;
}

/*==========================
SITE FOOTER (page background, sits behind the floating card)
==========================*/

.site-footer{

    width:100%;

    padding:34px 45px;
    flex-shrink:0;

    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;

    color:rgba(255,255,255,.75);
    font-size:14px;

    position:relative;
}

.site-footer nav{

    display:flex;
    gap:30px;
}

.site-footer a{

    color:rgba(255,255,255,.85);
    text-decoration:none;
}

.site-footer a:hover{

    color:#9dffbf;
}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:1100px){

.container{

    grid-template-columns:1fr;
}

.student{

    position:relative;

    right:auto;
    bottom:auto;

    margin:40px auto;
}

.cards{

    width:100%;
}

.hero p{

    width:100%;
}

.support{

    grid-template-columns:1fr;
    gap:16px;
}

.support > div{

    padding:0;
}

.support > div:not(:last-child){

    border-right:none;
    border-bottom:1px solid rgba(0,0,0,.08);
    padding-bottom:16px;
}

.site-footer{

    flex-direction:column;
    text-align:center;
    padding:0 20px;
}

}

/*==========================
FORM VALIDATION (added for the Razor form; not in the original file)
==========================*/

.validation-summary-errors ul{
    list-style:none;
    color:#c0392b;
    font-size:13px;
    margin-bottom:12px;
}

.field-validation-error{
    display:block;
    color:#c0392b;
    font-size:12.5px;
    margin-top:-12px;
    margin-bottom:12px;
}

input.input-validation-error{
    border-color:#c0392b;
}
