<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=SUSE:wght@100..800&amp;display=swap");

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

:root {
  --linear-grad: linear-gradient(to right, #141e30, #243b55);
  --grad-clr1: #141e30;
  --grad-clr2: #243b55;
}

body {
  height: 100vh;
  background: #f6f5f7;
  display: grid;
  /* place-content: center; */
  font-family: "Poppins", sans-serif;
}

h1 {
  color: var(--grad-clr1);
  margin: 0;
  margin-bottom: 30px;
}

a {
  color: #333;
  font-size: 18px;
  text-decoration: none;
  margin: 25px 0;
}

a.forgot {
  padding-bottom: 5px;
  border-bottom: 2px solid #eee;
}

p {
  font-size: 20px;
  font-weight: 300;
  line-height: 50px;
  letter-spacing: 0.5px;
  margin: 30px 0;
}

/* Main select box styling */
select {
  width: 100%;
  padding: 14px 15px;
  background-color: #f3f3f3;
  border: none;
  outline: none;
  font-size: 25px; /* Keep consistent font size */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  background-image: url('data:image/svg+xml;utf8,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-down"&gt;&lt;polyline points="6 9 12 15 18 9"&gt;&lt;/polyline&gt;&lt;/svg&gt;');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  cursor: pointer;
}

/* Reduce size of the dropdown list that appears */
select option {
  font-size: 20px; /* Same font size as other inputs */
  padding: 8px 12px; /* Smaller padding for options */
}

/* Limit the height of the dropdown box and enable scrolling if necessary */
select {
  max-height: 150px; /* Adjust to control the visible height */
  overflow-y: auto; /* Enable scrolling if there are many options */
}

/* Hide the default placeholder from being selectable */
select option[disabled] {
  color: #888; /* Placeholder color */
  display: none; /* Prevents the placeholder from appearing in the dropdown list */
}

/* Reduce the size of the dropdown list box that appears */
select:focus option {
  max-height: 100px; /* Adjust height to reduce the visible dropdown list */
  overflow-y: auto; /* Allows scrolling if necessary */
}

/* Styles for the loading spinner */
button.loading {
  position: relative;
  pointer-events: none; /* Prevent further clicks */
  color: transparent; /* Hide button text */
}

button.loading:after {
  content: "";
  border: 3px solid #fff;
  border-top: 3px solid transparent;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 1s linear infinite;
}

/* Animation for spinner */
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
</pre></body></html>