/* Modern Login CSS with Background Image and Responsive Layout */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

body {
  font-family: 'Inter', sans-serif;
  background: url(/assets/trading-background-4ecf72ddac4f9f4aac3a91370f74b14b59007f2c2cc41dc5822f4730a132c4c4.jpg) no-repeat center center fixed;
  background-size: cover;
  color: #333;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(10, 46, 76, 0.45) 0%, rgba(28, 93, 139, 0.45) 100%);
  backdrop-filter: blur(4px);
  z-index: 0;
}

.login-wrapper {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.login-container {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.info-container {
  width: 100%;
  color: white;
  padding: 30px 20px;
  margin-top: 30px;
  text-align: center;
}

.info-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: white;
  padding-left: 20px;
}

.info-description {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  padding: 20px;
  background-color: rgba(0,0,0,0.5);

}

#content {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  padding: 40px 30px;
  width: 100%;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.brand-logo {
  margin-bottom: 24px;
  display: block;
}

.brand-logo img {
  max-width: 180px;
  max-height: 70px;
}

.brand-name h1, .brand-name h3 {
  color: #1c5d8b;
  margin-bottom: 12px;
  font-weight: 600;
}

.login-subtitle {
  color: #7e7e7e;
  font-size: 14px;
  margin-bottom: 24px;
}

.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group input {
  width: 100%;
  padding: 15px;
  padding-left: 45px;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  background-color: #f9f9f9;
  font-size: 14px;
  color: #333;
  transition: all 0.3s ease;
}

.input-group input:focus {
  border-color: #1c5d8b;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(28, 93, 139, 0.15);
  outline: none;
}

.input-group .input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #7e7e7e;
  transition: all 0.3s ease;
}

.input-group input:focus + .input-icon {
  color: #1c5d8b;
}

.input-group .toggle-password {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #7e7e7e;
  cursor: pointer;
  transition: all 0.3s ease;
}

.input-group .toggle-password:hover {
  color: #1c5d8b;
}

.login-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #1c5d8b 0%, #0a2e4c 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(28, 93, 139, 0.2);
}

.login-btn:hover {
  background: linear-gradient(135deg, #23699b 0%, #0e3c62 100%);
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(28, 93, 139, 0.3);
}

.login-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(28, 93, 139, 0.2);
}

.footer-info {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #7e7e7e;
}

.footer-info img {
  height: 15px;
  margin-right: 8px;
}

#error_explanation {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(220, 53, 69, 0.95);
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  text-align: center;
  width: 90%;
  animation: fadeInOut 5s forwards;
}

#error_explanation h2 {
  font-size: 16px;
  font-weight: 500;
  color: white;
}

@keyframes fadeInOut {
  0% { opacity: 0; transform: translate(-50%, -20px); }
  10% { opacity: 1; transform: translate(-50%, 0); }
  90% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, -20px); }
}

/* Medium screens and up (768px+) */
@media (min-width: 768px) {
  .login-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  .login-container {
    width: 40vw;
    max-width: 40vw;
    margin: 0;
  }
  
  .info-container {
    width: 55%;
    margin-top: 0;
    padding: 0 40px;
    text-align: left;
  }
  
  .info-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .info-description {
    font-size: 15px;
  }
}

/* Small screens (under 768px) */
@media (max-width: 767px) {
  #content {
    padding: 30px 20px;
  }
  
  .login-btn {
    padding: 12px;
  }
}

/*# sourceMappingURL=login.css-c2f7f1d657b9ae77311809776406bb12f5e44ae34bd4f122a8b527b42b55f2e1.map */
