@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
 .quicksand-font {
      font-family: "Quicksand", sans-serif;
      font-optical-sizing: auto;
      font-weight: 300;
      font-style: normal;
    }
    .error {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}

input.error {
    border: 1px solid red;
}

body{
    margin: 0;
    font-family: "Quicksand", sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  
  body::before{
  /* background:#3b3f4a; */
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/image7.png') no-repeat center center/cover;
    filter: blur(10px);   /* Adjust blur strength here */
    z-index: -1;
}
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: -1;
}

.side-design2 {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.login-card .card {
    border-radius: 12px;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.95);
}

.login-card h4 {
    color: #062c52;
    font-weight: 600;
}

.sign-style {
    padding: 6px 20px;
    border-radius: 6px;
    transition: 0.3s;
}

.sign-style:hover {
    background: #062c52;
    color: #fff;
}




.main-wrapper{
    width:1100px;
    max-width:95%;
    border-radius:20px;
    overflow:hidden;
    background:#1f2432;
    box-shadow:0 20px 40px rgba(0,0,0,0.4);
}

.left-panel{
    background:#1f2432;
    color:#fff;
    padding:60px;
}

.right-panel{
    background:url('../img/image6.png') no-repeat center center/cover;
    position:relative;
}

.right-panel::after{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
}

.login-title{
    font-size:32px;
    font-weight:600;
}

.form-control{
    background:#2a3042;
    border:none;
    border-radius:12px;
    padding:12px 10px;
    color:#fff;
}

.form-control:focus{
    background:#2a3042;
    color:#fff;
    border:2px solid #4da6ff;
    box-shadow:none;
}

.btn-login{
    background: linear-gradient(90deg, #ffffff, #f8f9fa);
    border:none;
    border-radius:30px;
    padding:10px 25px;
    color:black;
}

.captcha-box img{
    border-radius:8px;
}

@media(max-width:768px){
    .right-panel{
        display:none;
    }
}
/* Remove default white swal box */
.project-toast {
    box-shadow: none !important;
    padding: 0 !important;
}

/* Keep toast container relative */
.project-toast.swal2-toast {
    position: relative !important;
    overflow: hidden;
}

/* Toast layout */
.toast-flex {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 24px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    min-width: 340px;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* SUCCESS */
.toast-success {
    background: #2ea043;
}

/* ERROR */
.toast-error {
    background: #d93025;
}

/* Icon circle */
.toast-icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
}

/* Icon colors */
.toast-success .toast-icon {
    color: #2ea043;
}

.toast-error .toast-icon {
    color: #d93025;
}

/* Progress bar fix */
.swal2-timer-progress-bar-container {
    position: absolute !important;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: transparent !important;
}

.swal2-timer-progress-bar {
    background: rgba(255,255,255,0.85) !important;
    height: 4px !important;
}
/* Success Toast */
.swal2-icon-success.custom-toast {
    background-color: #28a745 !important;
    color: #ffffff !important;
}

/* Error Toast */
.swal2-icon-error.custom-toast {
    background-color: #dc3545 !important;
    color: #ffffff !important;
}
/* General Toast Style */
.custom-toast {
    color: #ffffff !important;
    border-radius: 8px !important;
}
