body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #F2F2F2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header img,
footer img {
  width: 100%;
}

.login-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo {
  display: block;
  margin-bottom: 20px;
  max-height: 50px;
}

.login-box {
  background: white;
  padding: 30px;
  border: 1px solid #ccc;
  max-width: 500px;
  margin-bottom: 30px;
  width: 100%;
}

.login-box h2 {
  color: #027DBA;
  margin: 10px 0;
  text-align: left;
  margin-left: 30px;
}

.login-box p {
  color: #777;
  margin-bottom: 25px;
  text-align: left;
margin-left: 30px;
}

form {
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  margin-left: 30px;
  margin-right: 30px;
}

.form-group label {
  font-weight: normal;
  font-size: 18px;
  margin-bottom: 10px;
}

input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 12px;
  margin: 0;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.password-wrapper {
  position: relative;
  width: 100%;
}

.password-wrapper .toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
}

.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin: 10px 0px;
  margin-bottom: 30px;
  margin-left: 30px;
  margin-right: 30px;
}
.error-message {
  color: red;
  text-align: center;
  margin: 10px 0;
  display: none;
}
.sign-in {
  width: 90%;
  background: #ABAAAA;
  border: none;
  padding: 10px;
  font-size: 18px;
  color: white;
  cursor: not-allowed;
  margin-left: 30px;
  margin-right: 30px;
}

.actions {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.action-btn {
  flex: 1;
  background: #0472CD;
  color: white;
  border: none;
  font-size: 18px;
  padding: 10px;
  margin: 0 5px;
  cursor: pointer;
  margin-left: 30px;
  margin-right: 15px;
}
