/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

/* BODY */
body{
  font-family: Arial, sans-serif;
  background:#f6f3fb;
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
}

.auth-card{
  display:flex;
  width:75vw;        /* 75% of viewport width */
  height:75vh;       /* 75% of viewport height */
  background:white;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

/* LEFT PANEL */
.left-panel{
  flex:1;
  padding:40px;
  color:#444;

  /* SOFT YELLOW GRADIENT */
  background: linear-gradient(
    135deg,
    #fff9c4,
    #ffe082,
    #ffd54f
  );

  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.left-panel .star{
  font-size:32px;
  font-weight:bold;
  color:#fff;
}

.left-content h2{
  font-size:24px;
  font-weight:600;
}

.small-text{
  font-size:14px;
  margin-bottom:10px;
}

/* RIGHT PANEL */
.right-panel{
  flex:1;
  padding:50px 40px;
}

form{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly; /* evenly spaces items vertically */
  height: 100%;
}

.right-panel h1{
  margin-bottom:10px;
  color:#333;
}



/* INPUTS */
input{
  width:100%;
  padding:12px;
  border-radius:8px;
  border:1px solid #ddd;
  margin-bottom:15px;
}

/* PASSWORD BOX */
.password-box{
  position:relative;
}

.password-box i{
  position:absolute;
  right:12px;
  top:50%;
  transform:translateY(-50%);
  color:#999;
}

/* BUTTON */
button{
  width:100%;
  padding:12px;
  border:none;
  border-radius:8px;
  background:linear-gradient(135deg,#ffe082,#ffd54f);
  color:#333;
  font-weight:bold;
  cursor:pointer;
  transition:0.3s;
}

button:hover{
  background:#ffca28;
}

/* DIVIDER */
.divider{
  text-align:center;
  margin:20px 0;
  font-size:13px;
  color:#aaa;
}



/* SIGNUP TEXT */
.signin-text{
  text-align:center;
  font-size:14px;
}

.signin-text a{
  color:#ffb300;
  font-weight:bold;
  text-decoration:none;
}