/* SECTION */
.signup-section{
    width:100%;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    /* background:#eef3f7; */
    background: #062c44;

}

/* CONTAINER */
.signup-container{
    width:100%;
    max-width:420px;
    background:white;
    padding:40px 30px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    text-align:center;
}

/* TITLE */
.signup-container h2{
    margin-bottom:25px;
    color:#0a3d62;
}

/* INPUT BOX */
.input-box{
    position:relative;
    margin-bottom:18px;
}

/* INPUTS */
.input-box input,
.input-box select{
    width:100%;
    padding:12px;
    border:1px solid #ccc;
    border-radius:5px;
    outline:none;
    font-size:14px;
    background:white;
}

/* 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;
}

/* FLOAT EFFECT */
.input-box input:focus + label,
.input-box input:valid + label,
.input-box select:focus + label,
.input-box select:valid + label{
    top:-8px;
    font-size:11px;
    color:#00a8cc;
}

/* BUTTON */
.signup-btn{
    width:100%;
    padding:12px;
    background:#0a3d62;
    color:white;
    border:none;
    border-radius:5px;
    font-size:15px;
    cursor:pointer;
    margin-top:10px;
}

.signup-btn:hover{
    background:#062c44;
}

/* LOGIN TEXT */
.login-text{
    margin-top:15px;
    font-size:14px;
}

.login-text a{
    color:#00a8cc;
    text-decoration:none;
}
.select2-container--default .select2-selection--single{
    height:45px;
    border-radius:5px;
    border:1px solid #ccc;
}

.select2-selection__rendered{
    line-height:45px !important;
}

.select2-selection__arrow{
    height:45px !important;
}
#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%); }
}


@media (max-width:480px){
    .signup-container{
        width:90%;
        padding:30px 20px;
    }

    .signup-container h2{
        font-size:20px;
    }
}