.wrapper {
  width: 100%;
  height: 75vh;
  background: linear-gradient(to right, #e9e9e9, #b1bacc, #7f8994);
  display: flex;
  justify-content: center;
  align-items: center;
}


.container {
  display: flex;
  height: 550px;
  width: 900px;
  background: #fff; /* Make sure the container has a background */
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.2); /* Soft shadow */
  overflow: hidden;

}

.left-panel {
  flex: 1;
  overflow: hidden;
}

.left-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.right-panel {
  flex: 1;
  background-color: #fff;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.title {
  font-size: 32px;
  color: #0456a3;
  margin-bottom: 10px;
  display: inline-block;
  border-bottom: 3px solid #0456a3; /* Underline color and thickness */
  padding-bottom: 5px;
}


.subtitle {
  color: #777;
  margin-bottom: 30px;
}

form input[type="text"],
form input[type="password"] {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  
}

form input:focus {
  outline: none;
  border-color: #007BFF;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

form input,
.options a {
  transition: all 0.3s ease;
}

.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  font-size: 14px;
  color: #555;
}

.options a {
  text-decoration: none;
  color: #007BFF;
  transition: all 0.2s ease;
}

.options a:hover {
  text-decoration: underline;  /* Show underline on hover */
}

form input,
.showpass a {
  transition: all 0.3s ease;
}

.showpass {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
}

.showpass a {
  text-decoration: none;
  color: #007BFF;
  transition: all 0.2s ease;
}

.showpass a:hover {
  text-decoration: underline;  /* Show underline on hover */
}

.button {
  width: 40%;
  padding: 15px;
  background: linear-gradient(to right, #003973, #007BFF);
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

.arrow {
  display: inline-block;
  transform: scale(1.2, 2.0) translateY(-2px);
  margin-left: 10px;
}


.button:hover {
  background: linear-gradient(to right, #002244, #0056b3);
}

.create-account {
  text-align: center;
  margin-top: 15px;
}

.create-account a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
}
.create-account a:hover {
  text-decoration: underline;  /* Show underline on hover */
}

.error {
  background-color: #ffdddd;
  border: 1px solid #d8000c;
  color: #d8000c;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 4px;
  font-size: 14px;
}

.captcha-container {
    display: flex;
    align-items: center;
}
#captcha-img {
    border: 1px solid #ccc;
    margin-right: 10px;
    margin-bottom: 10px;
}
.refresh-btn {
    cursor: pointer;
    padding: 6px 10px;
    font-size: 18px;
    margin-right: 10px;
}
.error {
    color: red;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    height: auto;
    width: 90%;
  }
  .left-panel {
    display: none;
  }
  .right-panel {
    padding: 30px;
  }
  button {
    width: 100%;
  }
}
