@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Yeseva+One&display=swap');

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

body, html {
  height: 100%;
  font-family: 'Yeseva One', serif;
}

.container {
  display: flex;
  height: 100vh;
}

/* Left Panel */
.left-panel {
  background-color: #1e2a38;
  color: white;
  flex: 1;
  display: flex;
  width: 40%;
  align-items: center;
  justify-content: center;
}

.login-box{
  text-align: center;
  padding: 2rem;
}

.login-box h1{
  font-size: 40px;
  color: #F6F1ED;
  text-align: center;
  line-height: normal;
  font-weight: 400;
  font-style: normal;
  font-family: 'Yeseva One',serif;
}

.login-box p{
  font-size: 16px;
  text-align: center;
  line-height: normal;
  font-family: 'Josefin Sans',serif;
  font-weight: 400;
}

form{
  padding-bottom: 2rem;
}

.form-group{
  display: grid;
  margin: 10px;
  padding: 1rem 1rem ;
  text-align: left;
}

label{
  max-width: 320px;
  font-size: 16px;
  font-family: 'Josefin Sans',serif;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 10px;
}

.form-group input{
  width: 320px;
  height: 40px;
  border-radius: 10px;
  background: #1B2840;
  color: #495D82;
}

form button{
  width: 320px;
  height: 41px;
  border-radius: 10px;
  font-size: 16px;
  font-family: 'Josefin Sans',serif;
  font-weight: 400;
  line-height: normal;
  color: #687DA1;
  text-align: center;
  margin-top: 1rem;
}

.login-box a{
  color: #F6F1ED;
  text-decoration: none;
  font-size: 16px;
  font-family: 'Josefin Sans',serif;
  font-weight: 400;
  line-height: normal;
  font-style: normal;
  padding-top: 1rem;
  text-align: center;
  display: inline-flex;
  gap: 4px;
}

.svg{
  height: 1em;
  vertical-align: middle;
}

/* Right Panel */
.right-panel{
  width: 60%;
  position: relative;
}
.right-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: black;
  color: white;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 14px;
  z-index: 10;
}


.messages {
  color: red;
  list-style: none;
  margin-bottom: 1rem;
  font-weight: bold;
}


/* ✅ Responsive Mobile Styles */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .left-panel {
    width: 100%;
    height: auto;
    padding: 2rem 1rem;
  }

  .login-box h1 {
    font-size: 28px;
  }

  .login-box p {
    font-size: 14px;
  }

  .form-group input,
  form button {
    max-width: 100%;
  }

  .right-panel {
    width: 100%;
    height: 200px; /* reduce image height */
  }

  .right-panel img {
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .login-box h1 {
    font-size: 22px;
  }

  .login-box p {
    font-size: 12px;
  }

  label {
    font-size: 12px;
  }
}