@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap");

html,
body {
  background: #eeeeee;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  height: 100%;
}

::selection {
  color: #fff;
  background: #eeeeee;
}
input:focus {
  border-color: aqua;
}

.container {
  width: calc(80% - 20px);
  margin: 40px auto;
  padding: 40px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  box-sizing: border-box;
  overflow: hidden;
}

@media (min-width: 1012px) {
  .container {
    max-width: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
/* Adjustments for Mobile Devices */
@media (max-width: 768px) {
  .container {
    margin: 20px 10px !important;
    padding: 20px !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    height: auto !important;
  }
}
.form.login-form {
  width: 100%;
  max-width: 100%;
}

.img-fluid {
  width: 100%;
  height: auto;
}

h2 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  width: 100%;
  margin-bottom: 1rem;
}

.form-control {
  width: 100%; /* Ensure input fields take full width */
  height: 40px;
  font-size: 15px;
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 10px;
  box-sizing: border-box;
}

::placeholder {
  color: #aaa;
}

.button {
  width: 100%; /* Ensure button takes full width */
  background: #b20091;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  height: 40px;
  border: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.button:hover {
  background: #c74282;
}

.link {
  padding: 5px 0;
}

.link a {
  color: #b20091;
  text-decoration: none;
}

.link a:hover {
  text-decoration: underline;
}

.alert {
  font-size: 14px;
  text-align: center;
}
