/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Merriweather;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Arial", sans-serif;
  background-color: #f9fbff;
  color: #1f2937;
  line-height: 1.6;
}

/* Top Heading */
.login-top-header {
  background-color: #1E4B8B;
;
  color: #ffffff;
  text-align: center;
  padding: 60px 0px 60px 0px;
}

.login-top-header h1 {
  font-size: 2rem;
}


.login-container {
  display: flex;
  width: 100%;
    /* height: 75.8vh; */
    height: 758px;
  background-color: #ffffff;
}
.merriweather {
  font-family: "Merriweather", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
a {
  text-decoration: none;   /* by default no underline */
  color: inherit;          /* optional: inherit parent text color */
}

a:hover {
  text-decoration: underline; /* show underline on hover */
}
.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  color: #FFFFFF;
}

/* Left Panel - Full Blue */
.login-info {
  background-color: #4A90E2;
  color: #fff;
  width: 918px;
  padding-right: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;  
  text-align: left;
}
.button-containr{
  text-align: center;
}
.left-box{
  width: 448px;
 white-space: normal; 
 word-wrap: break-word;
}

.login-info h2 {
  font-family: Merriweather;
  font-size: 40px;
  margin-bottom: 1rem;
  line-height: normal;
}

.login-info p {
  font-size: 16px;
  color: #FFFFFF;
}
.login-info p a {
    text-decoration: none;   /* by default no underline */
  color: inherit;
  
}
.login-info p a:hover {
  text-decoration: underline;
}

.login-info a {
  color: #dbeafe;
  text-decoration: underline;
}

/* Right Panel - Full White */
.login-form-container {
  background-color: #ffffff;
  width: 50%;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column; 
  justify-content: center;
  align-items: flex-end;
  align-items: flex-start;
  text-align: left; 

}

.login-form {
  width: 100%;
  max-width: 400px;
}

.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1f2937;
}

input {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  transition: border-color 0.3s ease;
      /* width: 520px; */
}

input:focus {
  border-color: #2563eb;
  outline: none;
}
.login-email-input[type="text"] > input,.login-password-input > input[type="text"]{
  width: 520px;
  border-radius: 6px;
}

/* Login Button */
.login-btn {
  width: 240px;
  height: 48px;
  padding: 0.75rem;
  background-color: #17A2B8;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-btn:hover,
.login-btn:focus {
  background-color: #0284c7;
  outline: 2px solid #17A2B8;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .login-container {
    flex-direction: column;
    height: auto;
  }
  .left-box{
  width: 100%;
}

  .login-info, .login-form-container {
    width: 100%;
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .login-info {
  width: 100%;
  display: flex;
  flex-direction: column; 
  align-items:center;
  }

  .login-info h2 {
    font-size: 1.4rem;
  }

  .login-top-header h1 {
    font-size: 1.5rem;
  }

  .login-form {
    max-width: 100%;
  }

  .login-form-container {
    justify-content: center;
  }
}
