

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

body{
  background:#f1f3f6;
  min-height:100vh;
}

.auth-wrapper{
  min-height:calc(100vh - 120px);
  display:flex;
  justify-content:center;
  align-items:center;
}

.main-container{
  width:750px;
  height:500px;
  display:flex;
  box-shadow:0 8px 25px rgba(0,0,0,0.15);
  background:white;
  border-radius:6px;
  overflow:hidden;
}

/* LEFT SIDE */
.left-box{
  width:40%;
  background:linear-gradient(135deg,#2874f0,#1a5dc9);
  color:white;
  padding:40px 25px;
}

.left-box h1{
  font-size:24px;
  margin-bottom:15px;
}

.left-box p{
  font-size:15px;
  color:#e6e6e6;
}

/* RIGHT SIDE */
.right-box{
  width:60%;
  padding:40px 35px;
}

.right-box label{
  font-size:13px;
  font-weight:600;
  color:#333;
}

.right-box input{
  width:100%;
  padding:10px 0;
  margin-bottom:20px;
  border:none;
  border-bottom:1px solid #ccc;
  font-size:14px;
  transition:0.2s;
}

.right-box input:focus{
  outline:none;
  border-bottom:2px solid #2874f0;
}

/* TERMS */
.terms{
  font-size:12px;
  color:#878787;
  margin-bottom:20px;
}

.terms span{
  color:#2874f0;
  font-weight:bold;
  cursor:pointer;
}


/* BUTTON */
.btn-primary{
  width:100%;
  padding:12px;
  background:#fb641b;
  color:white;
  border:none;
  font-size:15px;
  cursor:pointer;
  margin-bottom:15px;
  border-radius:4px;
  transition:0.3s;
}

.btn-primary:hover{
  background:#e85b17;
  transform:scale(1.02);
}

/* FORGOT PASSWORD */
.forgot-wrapper{
  text-align:center;
  margin-bottom:18px;
}

.forgot-link{
  display:inline-block;
  font-size:14px;
  font-weight:600;
  color:#2874f0;
  text-decoration:none;
  padding:8px 14px;
  border-radius:20px;
  transition:0.3s;
}

.forgot-link:hover{
  background:#e3f2fd;
  color:#1a5dc9;
  box-shadow:0 3px 8px rgba(0,0,0,0.1);
}

/* CREATE ACCOUNT LINK */
.login-link{
  display:block;
  text-align:center;
  color:#2874f0;
  font-size:14px;
  text-decoration:none;
  font-weight:600;
}

.login-link:hover{
  text-decoration:underline;
}

/* MOBILE */
@media (max-width:768px){
  .main-container{
    width:95%;
    height:auto;
    flex-direction:column;
  }
  .left-box{
    display:none;
  }
  .right-box{
    width:100%;
    padding:25px 20px;
  }
  .auth-wrapper{
    padding:20px 0;
  }
}


.error-box{
  background:#ffe6e6;
  color:#d8000c;
  padding:10px;
  margin-bottom:15px;
  border-radius:5px;
  font-size:14px;
  text-align:center;
}

/* rember me session start  */


.remember-label{
  display:flex;
  align-items:center;
  font-size:14px;
  color:#333;
  cursor:pointer;
  user-select:none;
}

.remember-label input{
  margin-right:8px;
  margin-top: 20px;
  width:16px;
  height:16px;
  accent-color:#2874f0;

}
.remember-wrapper{
  display:flex;
  justify-content:flex-start; 
}

