@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #f5f5f5;
  font-family: Mulish, sans-serif;
}

.logo {
  text-align: center;
  margin-bottom: 50px;
  font-family: "Paytone One", sans-serif;
  font-size: 2.5rem;
  color: #383838;
  border-bottom: 1px #afafaf solid;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
}
.logo span:last-child {
  font-size: 2rem;
  letter-spacing: 2px;
}
.logo img {
  max-width: 200px;
}

.container {
  max-width: 500px;
  margin: 50px auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.login-form {
  text-align: center;
}
.login-form .fields {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.login-form .fields .input-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.login-form .fields input, .login-form .fields textarea {
  font-size: 16px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: 0.3s;
  width: 100%;
}
.login-form .fields input:focus, .login-form .fields textarea:focus {
  border-color: #007BFF;
  outline: none;
}
.login-form .fields label {
  position: absolute;
  left: 10px;
  top: 10px;
  color: #777;
  pointer-events: none;
  font-size: 16px;
  transition: 0.3s;
  z-index: 50;
}
.login-form .fields .input-wrapper label {
  top: -10px;
  left: 5px;
  font-size: 12px;
  color: #007BFF;
  background: #fff;
  padding: 0 5px;
}
.login-form h2 {
  margin-bottom: 20px;
  color: #333;
}
.login-form button {
  margin-top: 1rem;
  background-color: #10a37f;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}
.login-form button:hover {
  box-shadow: inset 0 0 0 150px rgba(0, 0, 0, 0.1);
}
.login-form .forgot-password {
  margin-top: 20px;
}
.login-form .forgot-password a {
  color: #666;
  text-decoration: none;
}
.login-form .forgot-password a:hover {
  text-decoration: underline;
}

/****/
.alert {
  background-color: #f2dede;
  border: 1px solid #ebccd1;
  border-radius: 5px;
  color: #a94442;
  font-size: 16px;
  margin: 20px auto;
  max-width: 600px;
  padding: 15px;
  text-align: left;
}
.alert ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.alert li {
  color: #a94442;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
.alert li:before {
  content: "•";
  color: #a94442;
  font-size: 16px;
  left: 0;
  position: absolute;
  top: 0;
}

.simple_content {
  background-color: #fff3cd;
  border-radius: 10px;
  color: #1D1D1D;
  font-size: 16px;
  margin: 20px auto;
  max-width: 80%;
  padding: 20px;
  text-align: center;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
}

.txt-center {
  text-align: center;
}

ul.hmenu {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
ul.hmenu li {
  margin: 10px;
  padding: 0;
}

/*# sourceMappingURL=styles.css.map */
