@font-face {
  font-family: CustomFont;
  src: url(./fonts/Montserrat-Medium.ttf);
}

* {
  box-sizing:border-box;
  margin: 0;
  padding: 0;
}


body {
  overflow-y: scroll ;
  background-image: url("../Assets/images/mainScreen.png");
  background-size:contain;
  background-color: rgba(235,227,214,255);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: CustomFont;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  scroll-behavior: auto !important;
  overscroll-behavior: contain;
}

.form-container {
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
  border-radius: 12px;
  box-shadow: 20px 20px 20px rgba(3, 0, 0, 0.1);
  border-style: solid;
  border-width: 0.05cm;
  width: max-content;
  background-color: rgba(94,163,65,255);
  gap: 25px;
}

.form {
  display: flex;
  flex-direction: column;
}


.form button {
  padding: 0.75rem;
  background-color: #8ec5fc;
  border: none;
  color: white;
  border-radius: 8px;
  cursor:pointer;
  transition: background-color 0.5s;
  height: 50px;
  font-size: large;
  text-align: center;
}

.form button:hover {
  background-color: rgb(90, 164, 224);
}


.form a {
  color: #6a5acd;
  text-decoration: none;
}

.hidden {
  display: none !important;
}

.UID {
    font-size:xx-large;
    text-align: center;
}
