/* ==== Fonts ==== */
@font-face {
  font-family: "Sebino";
  src: url("Sebino-Regular.ttf"); /* Optional: for IE9 and below */
  src: local("Sebino Regular"), local("Sebino"),
    url("Sebino-Regular.ttf") format("truetype"),
    url("Sebino-Regular.svg#Sebino") format("svg"); /* Optional: for legacy Safari */
  font-weight: normal;
  font-style: normal;
}

/* ==== Bootstrap ==== */
.btn-primary {
  background-color: #62ab9e;
  border-color: #62ab9e;
}

.btn-primary:hover {
  background-color: #4c8b7fff;
  border-color: #4c8b7fff;
}

.btn-primary:disabled,
.btn-primary.disabled {
  background-color: #62ab9e !important;
  border-color: #62ab9e !important;
  color: white !important;
  opacity: 1 !important;
  pointer-events: none;
}


.btn-primary:active,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle,
.btn-outline-primary:active,
.btn-outline-primary.active,
.show > .btn-outline-primary.dropdown-toggle {
  background-color: #396d63ff !important;
  border-color: #396d63ff !important;
  color: white !important;
  box-shadow: none !important;
}

* {
  box-sizing: border-box;
  font-family: "Sebino", sans-serif;
}

.logo-text-colour {
  color: #62ab9e;
}

body {
  background-color: #a7a9ab;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

main.login form {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 8px 20px 1px rgba(0, 0, 0, 0.25);
  padding: 2rem;
  max-width: 400px;
  width: 100%;
}

.form-container {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 400px;
}

html {
  overflow-y: scroll;
}
