/* SECTION */

.login-section{
    width:100%;
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    /* background:#eef3f7; */
    background: #062c44;

}


/* CONTAINER */
.login-container{
    width:100%;
    max-width:400px;
    background:white;
    padding:40px 30px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    text-align:center;
}

/* TITLE */
.login-container h2{
    margin-bottom:25px;
    color:#0a3d62;
}

/* INPUT BOX */
.input-box{
    position:relative;
    margin-bottom:20px;
}

.input-box input{
    width:100%;
    padding:12px;
    border:1px solid #ccc;
    border-radius:5px;
    outline:none;
    font-size:14px;
}

/* FLOAT LABEL */
.input-box label{
    position:absolute;
    top:50%;
    left:12px;
    transform:translateY(-50%);
    background:white;
    padding:0 5px;
    font-size:13px;
    color:#777;
    transition:0.3s;
}

/* LABEL ANIMATION */
.input-box input:focus + label,
.input-box input:valid + label{
    top:-8px;
    font-size:11px;
    color:#00a8cc;
}

/* OPTIONS */
.login-options{
    display:flex;
    justify-content:space-between;
    font-size:13px;
    margin-bottom:20px;
}

.login-options a{
    text-decoration:none;
    color:#00a8cc;
}

/* BUTTON */
.login-btn{
    width:100%;
    padding:12px;
    background:#0a3d62;
    color:white;
    border:none;
    border-radius:5px;
    cursor:pointer;
    font-size:15px;
}

.login-btn:hover{
    background:#062c44;
}

/* SIGNUP */
.signup-text{
    margin-top:15px;
    font-size:14px;
}

.signup-text a{
    color:#00a8cc;
    text-decoration:none;
}

@media (max-width:480px){
    .login-container{
        padding:30px 20px;
    }

    .login-container h2{
        font-size:20px;
    }
}

#toastBox {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast {
    min-width: 220px;
    margin-top: 10px;
    padding: 12px 16px;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    animation: slideIn 0.3s ease, fadeOut 0.5s ease 3s forwards;
}

.toast.success { background: #22c55e; }
.toast.error { background: #ef4444; }
.toast.info { background: #3b82f6; }

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
    to { opacity: 0; transform: translateX(100%); }
}










