.login-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  position: fixed;
  transform: translate(-50%,-50%);
  left: 50%;
  top: 50%;
}

.login-content-wrapper {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  width: 900px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Brand section styling */
.login-brand-section {
    width: 50%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
}

.login-logo {
  width: 280px;
  height: auto;
  margin-bottom: 20px;
}

.company-name-container {
  text-align: center;
}

.company-title {
  font-size: 28px;
  font-weight: 800;
  color: #333;
  margin-bottom: 5px;
}

.company-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: #2d2d2d;
  margin-top: 5px;
}

.company-desc {
  font-size: 18px;
  font-weight: 400;
  color: #333;
  margin-top: 65px;
}

/* Form section styling */
.login-form {
  width: 50%;
  padding: 50px 30px;
}

.login-form-title {
  font-size: 24px;
  color: #333;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

.form-group {
  margin-bottom: 20px;
}

.input-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

.input-container {
  position: relative;
  width: 100%;
}

.input-field {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  color: #333;
  transition: all 0.3s;
}

.input-field:focus {
  border-color: #EDA500;
  box-shadow: 0 0 0 3px rgba(165, 32, 46, 0.1);
  outline: none;
}

.input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
}

/* Button styling */
.button-container {
  width: 100%;
  margin-top: 50px;
  /* margin-bottom: 30px; */
}

.login-button {
  width: 100%;
  background: linear-gradient(135deg, #EDA500 0%, #ca8e00 100%);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
}

.login-button:hover {
  background: linear-gradient(135deg, #ca8e00 0%, #b98200 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(165, 32, 46, 0.2);
}

.login-message {
  margin-top: 10px;
  color: #EDA500;
  text-align: center;
}

/* Login options styling */
.login-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.forgot-link, .create-account-link {
  color: #EDA500;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s;
}

.forgot-link:hover, .create-account-link:hover {
  color: #b98200;
  text-decoration: underline;
}

/* Responsive styling */
@media (max-width: 768px) {
  .login-content-wrapper {
      flex-direction: column;
  }
  
  .login-brand-section, .login-form {
      width: 100%;
      padding: 30px;
  }
  
  .login-brand-section {
      padding-bottom: 10px;
  }
  
  .login-form {
      padding-top: 10px;
  }
}


/* Footer styling */
.login-footer {
  width: 100%;
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
  padding: 15px 0;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.footer-copyright {
  color: #6c757d;
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-icon {
  color: #ca8e00;
  font-size: 16px;
  transition: color 0.2s, transform 0.2s;
}

.footer-icon:hover {
  color: #EDA500;
  transform: translateY(-2px);
}

/* Responsive adjustment for footer */
@media (max-width: 576px) {
  .footer-content {
      flex-direction: column;
      gap: 15px;
      text-align: center;
  }
}

/* Remember me and forgot password row */
.remember-forgot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
}

.remember-container {
  display: flex;
  align-items: center;
}

/* Divider styling */
.divider {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #ddd;
  line-height: 0.1em;
  margin: 25px 0;
}

.divider-text {
  background: #fff;
  padding: 0 10px;
  color: #6c757d;
  font-size: 14px;
}

/* Social login buttons */
.social-login {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 25px;
}

.social-button {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background-color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.social-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.google-btn {
  background-color: #db4a39;
  color: #fff;
}

.twitter-btn {
  background-color:  #1DA1F2;
  color: #fff;
}

.linkedin-btn {
  background-color: #0077b5;
  color: #fff;
}

.google-btn:hover {
  background-color: #f8f9fa;
  border-color: #db4a39;
  color: #db4a39;
}

.twitter-btn:hover {
  background-color: #f8f9fa;
  border-color:  #1DA1F2;
  color:  #1DA1F2;
}

.linkedin-btn:hover {
  background-color: #f8f9fa;
  border-color: #0077b5;
  color: #0077b5;
}

/* Create account container */
.create-account-container {
  text-align: center;
  margin-top: 10px;
}

.account-text {
  color: #6c757d;
  font-size: 14px;
}

.create-account-link {
  color: #EDA500;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.create-account-link:hover {
  color: #b98200;
  text-decoration: underline;
}

/* Adjust for smaller screens */
@media (max-width: 576px) {
  .social-login {
      flex-direction: column;
  }
  
  .remember-forgot-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
  }
  
  .forgot-container {
      width: 100%;
      text-align: right;
  }
}