/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal
}

ul {
  list-style: none
}

button,
input,
select {
  margin: 0
}

html {
  box-sizing: border-box
}

*,
*::before,
*::after {
  box-sizing: inherit
}

img,
video {
  height: auto;
  max-width: 100%
}

iframe {
  border: 0
}

table {
  border-collapse: collapse;
  border-spacing: 0
}

td,
th {
  padding: 0
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, Helvetica, Arial, Apple Color Emoji, Segoe UI Emoji;
}

input {
  font-family: Roboto, Helvetica, Arial, sans-serif;
}

.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

input:not([type='submit']) {
  font-size: 18px;
  width: 100%;
  border: 1px solid #ddd;
  outline: none;
  margin-bottom: 16px;
  padding: 4px 14px;
  border-radius: 2px;
}

input:not([type='submit'])::placeholder {
  color: #777;
}

.btn {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  padding: 0 14px;
  border-radius: 2px;
  transition: 0.1s ease-in all;
  outline: none;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  line-height: 32px;
}

.btn-primary {
  color: #fff !important;
  background-color: #006bb3 !important;
}

.btn-primary:hover {
  color: #fff !important;
  background-color: #008ae3 !important;
}

.btn-secondary {
  color: #093581 !important;
  background-color: #fff !important;
}

.btn-secondary:hover {
  color: #fff !important;
  background-color: #006bb3 !important;
}

body.login-screen {
  background: #fff url('/assets/images/MAHADEVA-bg.jpg') no-repeat 50% 0;
  background-size: cover;
  min-height: 100vh;
  color: #fff;
  text-align: center;
  padding: 120px 16px;
}

.login-screen h1 {
  font-size: min(max(32px, 4.5vw), 72px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 1px -1px 0px rgba(95, 219, 233, 0.7), 2px -1px 0px rgba(104, 193, 201, 0.7);
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
  user-select: none;
}

@media screen and (min-width: 768px) {
  .login-screen h1 {
    text-shadow: 2px -1px 0px rgba(95, 219, 233, 0.7), 4px -1px 0px rgba(104, 193, 201, 0.7);
  }
}

.login-screen h1 img {
  width: min(max(72px, 6vw), 108px);
}

.login-screen .login-form {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.login-form {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

@media screen and (min-width: 1024px) {
  .login-form {
    flex-wrap: nowrap;
  }
}

.login-form form {
  flex-basis: 50%;
  flex-grow: 1;
}

.login-form input[type='submit'] {
  min-width: 120px;
  text-transform: uppercase;
  font-size: 14px;
}

.login-buttons {
  flex-grow: 1;
}

.login-buttons .btn {
  margin-bottom: 16px;
}

.login-tech a {
  color: #fff;
  text-decoration: none;
}

.login-tech a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.navigation {
  margin-bottom: 32px;
}

.navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  user-select: none;
}

.navigation ul li {
  display: inline-block;
}

.navigation ul li a {
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  color: #093581;
  background-color: #c5e9ff;
  display: inline-block;
  padding: 6px 14px;
  margin: 5px 5px;
  border-radius: 2px;
  transition: 0.1s ease-in all;
  user-select: none;
}

.navigation ul li a:hover {
  color: #fff;
  background-color: #006bb3;
}