@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
body{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a1628;
  padding: 30px;
}
.container{
  position: relative;
  max-width: 900px;
  width: 100%;
  background: #fff;
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.3);
}
.container .cover{
  width: 45%;
  background: #0a1628;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
  position: relative;
  min-height: 550px;
}
.container .cover::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0a1628 0%, #1a2332 100%);
}
.container .cover .brand{
  position: relative;
  z-index: 1;
  text-align: center;
}
.container .cover .brand .logo-icon{
  width: 64px;
  height: 64px;
  background: #c9a84c;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #0a1628;
}
.container .cover .brand h1{
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #c9a84c;
  margin-bottom: 8px;
}
.container .cover .brand p{
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.container .cover .illustration{
  position: relative;
  z-index: 1;
  margin-top: 30px;
  text-align: center;
}
.container .cover .illustration i{
  font-size: 80px;
  color: #c9a84c;
  opacity: 0.8;
}
.container .cover .illustration .quote{
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  margin-top: 16px;
  font-style: italic;
}
.container .forms{
  width: 55%;
  padding: 40px;
  display: flex;
  align-items: center;
}
.container .form-content{
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}
.forms .form-content .title{
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: #0a1628;
  margin-bottom: 4px;
}
.forms .form-content .subtitle{
  font-size: 14px;
  color: #8a8a8a;
  margin-bottom: 24px;
}
.forms .form-content .input-boxes{
  margin-top: 0;
}
.forms .form-content .input-box{
  display: flex;
  align-items: center;
  height: 50px;
  width: 100%;
  margin: 12px 0;
  position: relative;
  background: #f8f6f1;
  border-radius: 8px;
  border: 1px solid #eae7e1;
  transition: all 0.3s ease;
}
.forms .form-content .input-box:focus-within{
  border-color: #c9a84c;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}
.form-content .input-box input{
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  padding: 0 12px 0 40px;
  font-size: 14px;
  font-weight: 400;
  background: transparent;
  color: #1a2332;
}
.form-content .input-box input::placeholder{
  color: #aaa;
}
.form-content .input-box i{
  position: absolute;
  left: 12px;
  color: #0a1628;
  font-size: 16px;
}
.forms .form-content .text{
  font-size: 13px;
  font-weight: 500;
  color: #5a6577;
}
.forms .form-content .text a{
  color: #c9a84c;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}
.forms .form-content .text a:hover{
  color: #0a1628;
}
.forms .form-content .button{
  margin-top: 20px;
}
.forms .form-content .button button{
  color: #fff;
  background: #0a1628;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  padding: 14px;
  width: 100%;
  cursor: pointer;
  transition: all 0.4s ease;
  border: none;
  letter-spacing: 0.5px;
}
.forms .form-content .button button:hover{
  background: #c9a84c;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}
.forms .form-content .button button:disabled{
  background: #8a8a8a !important;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
.forms .form-content label{
  color: #c9a84c;
  cursor: pointer;
}
.forms .form-content label:hover{
  text-decoration: underline;
}
.forms .form-content .login-text{
  text-align: center;
  margin-top: 20px;
}
.alert-box{
  display: none;
  margin-bottom: 12px;
}
.alert-box .alert{
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
}
.alert-box .alert-danger{
  background: #fef2f2;
  color: #c0392b;
  border: 1px solid #f5c6cb;
}
.alert-box .alert-success{
  background: #f0fdf4;
  color: #2d8a4e;
  border: 1px solid #d4edda;
}
#forgotPassword-form{
  display: none;
}
a{
  cursor: pointer;
}
#togglePassword{
  position: absolute;
  right: 12px;
  color: #8a8a8a;
  font-size: 16px;
  cursor: pointer;
}
#board-title{
  font-family: 'Playfair Display', serif;
}
.forms .form-content .input-box select{
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  padding: 0 12px 0 40px;
  font-size: 14px;
  font-weight: 400;
  background: transparent;
  color: #1a2332;
}
@media (max-width: 730px) {
  .container .cover{
    display: none;
  }
  .container .forms{
    width: 100%;
  }
}
.form-check label{
  color: #5a6577 !important;
}
.form-check-input:checked{
  background-color: #0a1628;
  border-color: #0a1628;
}
