@font-face {
    font-family: 'Roboto';
    src:  local('Roboto'), url('assets/fonts/Roboto-Regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src:  local('Roboto'), url('assets/fonts/Roboto-MediumItalic-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src:  local('Roboto'), url('assets/fonts/Roboto-ThinItalic-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src:  local('Roboto'), url('assets/fonts/Roboto-Medium-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src:  local('Roboto'), url('assets/fonts/Roboto-Thin-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

html {
    overflow-y: scroll;
}


body {
    font-family: 'Roboto', sans-serif;
    background: #151515; /* Dark background */
    color: white;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
}


.logo img {
    margin-top: 40px;
    margin-bottom: 0px;
    width: 200px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


.page-title {
  text-align: center;
  margin-bottom: 5px;
  font-size: 15px;
  color: white; /* White color for the title */
}

.page-title h1 {
  font-weight: bold;
  text-align: center;
}

.login-form {
    width: 90%;
    max-width: 600px;
    margin: 30px auto;
    padding: 30px 25px;
    background: #1b1b1b;
    border: 1px solid black;
    border-radius: 5px;
    box-shadow: inset 0 0 1px #272727;
    box-sizing: border-box;
    text-align: center;
}


.text {
  font-size: 30px;
  color: #c7c7c7;
  font-weight: 500;
  letter-spacing: px;
  text-align: center;
}

form {
  margin-top: 40px;
}

form .field {
  margin-top: 20px;
  display: flex;
  align-items: center;
  width: 100%;
}


.field .fas {
  height: 50px;
  width: 50px;
  color: #868686;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center; /* center icon inside */
  border: 1px solid #444;
  border-right: none;
  border-radius: 5px 0 0 5px;
  background: linear-gradient(#333, #222);
}

.field input,
form button {
  height: 50px;
  width: 100%;
  outline: none;
  font-size: 19px;
  color: #868686;
  padding: 0 15px;
  border-radius: 0 5px 5px 0;
  border: 1px solid #444;
  caret-color: #12aa6d;
  background: linear-gradient(#333, #222);
}

input:focus {
  color: #12aa6d;
  box-shadow: 0 0 5px rgba(0, 255, 0, 0.2), inset 0 0 5px rgba(0, 255, 0, 0.1);
  background: linear-gradient(#333933, #222922);
  animation: glow 0.8s ease-out infinite alternate;
}

@keyframes glow {
  0% {
    border-color: #12aa6d;
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.2), inset 0 0 5px rgba(0, 0, 0, 0.1);
  }
  100% {
    border-color: #6f6;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.6),
      inset 0 0 10px rgba(0, 255, 0, 0.4);
  }
}

button {
  margin-top: 30px;
  border-radius: 5px !important;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
}

button:hover {
  color: #12aa6d;
  border: 1px solid #12aa6d;
  box-shadow: 0 0 5px rgba(0, 255, 0, 0.3), 0 0 10px rgba(0, 255, 0, 0.2),
    0 0 15px rgba(0, 255, 0, 0.1), 0 2px 0 black;
}

.link {
  margin-top: 25px;
  color: #868686;
}

.link a {
  color: #12aa6d;
  text-decoration: none;
}

.link a:hover {
  text-decoration: underline;
}

/* Footer Styling */
footer {
    position: relative;
    width: 100%;
    background-color: #1b1b1b;
    text-align: center;
    padding: 15px 0;
    color: white;
    margin-top: 50px;
}


footer a {
  color: #12aa6d;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
