.login-container {
  display: flex;
  flex-direction: row;
  height: 50%;
  width: 100%;
  background-color: #ececec;
}

.left-panel {
  width: 50%;
  padding: 40px;
  background-color: #f1f1f1;
}

.left-panel h1 {
  color: #e94e1b;
}

.left-panel p {
  margin: 20px 0;
}

.connect-logo {
  text-align: center;
  margin-right: 100px;
  
}

.connect-logo img {
  border-radius: 5px;
  width: 200px;
  mix-blend-mode: difference;
}

.right-panel {
  width: 50%;
  padding: 40px;
  display: flex;
  margin-left: 30px;
  flex-direction: column;
  justify-content: center;
}
#email{
  margin-left: 40px;
  width: 300px;
}
#password{
  margin-left: 92px;
  width: 300px;
}

.right-panel h1 {
  font-size: 1.8em;
  margin-bottom: 20px;
}

.login-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  font-size: 0.9em;
}

.form-group input {
  width: 80%;
  height: 25px;
  padding: 10px;
  border: 1px solid #e4e3e3;
  border-radius: 4px;
  margin-top: 5px;
}
.forgot-password {
  text-align: center;
  display: block;
  margin-top: 30px;
  color: #e94e1b;
  text-decoration: none;
  margin-left: 260px;
}

.login-button {
  background-color: #e94e1b;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
  margin-top: 20px;
  width : 450px;
  
}

.register-section {
  text-align: center;
  margin-top: 15px;
  margin-right: 120px;
}

.register-section a {
  color: #e94e1b;
  text-decoration: none;
}

.social-login {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-right: 120px;
}

.social-login a img {
  width: 40px;
  margin: 0 10px;
}


.capchahead1{
    color: blue;
    margin-bottom: 10px;
    font-size: larger;
}

.captcha-display {
  display: flex;
  align-items: center;
  background-color: white;
  padding: 8px;
  border-radius: 5px;
  width: fit-content;
  justify-content: space-between;
}

.captcha-box {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 3px;

}

.captcha-error {
  color: red;
  margin-top: 5px;
}

.captcha-success {
  color: green;
  margin-top: 5px;
}


.reload-symbol {
  font-size: 24px;
  cursor: pointer;
}

.verify-button34 {
  margin-top: 10px;
  background-color: #4caf50;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  margin-left: 10px;
  border-radius: 5px;
}

.verify-button34:hover {
  background-color: #45a049;
}


