@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  color: #000000;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 16px;
  cursor: default;
}

.container {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-image: linear-gradient(#4e1daf, #291919);
  padding-bottom: 150px;
}

.log-form-box {
  margin: 2% 0;
  width: 350px;
  max-width: 90%;
  text-align: center;
}

.logo-box img {
  max-width: 100%;
  max-height: 70px;
}

.form-box {
  padding-top: 10px;
  margin-top: 1.5rem;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 0 5px #fff;
}

.form-box > h4 {
  text-align: center;
  font-size: 22px;
  font-weight: 400;
  color: #4e1daf;
}

.form-box > h4 > img {
  height: 21.6px;
  position: relative;
  bottom: -3px;
}

.form-box form {
  padding: 10px;
  width: 100%;
}

.form-box form .input-field {
  margin-bottom: 1.5rem;
  width: 100%;
  display: flex;
}

.form-box form .input-field input {
  width: 100%;
  background-color: #ffffff;
  color: #000000;
  padding: 5px;
  border-radius: 0;
  display: block;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  background-clip: padding-box;
  border: 1px solid #dbdbdb;
  -moz-appearance: none;
  appearance: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-transition: border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  -moz-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -ms-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-box form .input-field span {
  display: flex;
  align-items: center;
  padding: 0.1rem 0.5rem;
  font-size: 1.5em;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-left: 0;
  border-radius: 0rem 0.25rem 0.25rem 0rem;
  -webkit-border-radius: 0rem 0.25rem 0.25rem 0rem;
  -moz-border-radius: 0rem 0.25rem 0.25rem 0rem;
  -ms-border-radius: 0rem 0.25rem 0.25rem 0rem;
  -o-border-radius: 0rem 0.25rem 0.25rem 0rem;
}

.form-box form .input-field button {
  width: 100%;
  background-color: #4e1daf;
  color: #ffffff;
  border-color: #4e1daf;
cursor:pointer;
  border-radius: 0;

  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  -moz-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
}

.form-box form .input-field button i {
  float: right;
  padding-top: 4px;
}

.form-box form .input-field.button {
  margin-bottom: 0;
}

.register {
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 12px;
}

.register a {
  text-decoration: none;
  color: #0d6efd;
}

small.recaptcha {
  font-size: 10px;
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  background-color: #4e1daf;
  color: #ffffff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.footer .footer-contact h2 {
  font-size: 20px;
  text-align: center;
  margin-top: 15px;
}
.footer .footer-contact p {
  font-size: 12px;
  text-align: center;
}

.footer .footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  margin-top: 15px;
  text-align: center;
}

.footer .footer-icon span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #ffffff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.footer .footer-icon span img {
  height: 20px;
}

.text-section {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: transparent;
  color: #333;
}

.text-section .container {
  max-width: 800px;
  margin: 20px auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.text-section h1 {
  text-align: center;
  color: #2c3e50;
}

.text-section h2 {
  color: #34495e;
  margin-top: 20px;
}

.text-section ul {
  list-style-type: disc;
  margin: 10px 0 10px 20px;
}

.text-section li {
  margin-bottom: 8px;
}
