body {
  margin: 0;
  padding: 0;
  background:
    url('../images/banner-bg.png') no-repeat center top -60px,
    linear-gradient(white, white);
  background-size: 100% auto, 100% 100%;
  background-repeat: no-repeat;
  background-color: white;
  font-family: 'Nunito', sans-serif;
}

.login-outer-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
}

.logo-container {
  margin-bottom: 20px;
}

.logo-login {
  width: 150px;
  height: auto;
}

.cont {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  width: 360px;
  max-width: 90%;
  padding: 40px 30px;
}

.cont.no-signup .img,
.cont.no-signup .img-btn {
  display: none;
}

.form {
  display: flex;
  flex-direction: column;
}

.form h2 {
  margin-bottom: 25px;
  color: #003A5D;
  text-align: center;
}

label {
  margin-bottom: 15px;
  display: block;
}

label span {
  display: block;
  margin-bottom: 5px;
  color: #003A5D;
  font-weight: 600;
  font-size: 14px;
}

input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}

button.submit {
  background-color: #00829B;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

button.submit:hover {
  background-color: #003A5D;
}

.forgot-pass {
  margin-top: 10px;
  text-align: right;
}

.forgot-pass a {
  color: #00829B;
  font-size: 13px;
  text-decoration: none;
}

.alert {
  font-size: 14px;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 6px;
}

.alert-danger {
  background-color: #ffebee;
  color: #b71c1c;
  border: 1px solid #f44336;
}

@media (max-width: 480px) {
  .cont {
    padding: 30px 20px;
  }
}
