:root {
  --primary-color:#157140;
}

body {
    font-family:Arial, Helvetica, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction:column;
    width: 100%;
    height: 100vh;
}

.login-logo-background {
  background-color: var(--primary-color);
}
  .login-container {
    background-color: #33414e;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
  }


  fieldset {
    border: none; /* Remove default fieldset border */
    padding: 8px; /* Remove default padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  legend {
    padding: 10px; /* Add some padding to legend */
    border-bottom: 1px solid lightgray; /* Add bottom border */
    font-weight: bold;
    font-size: xx-large;
    width: 100%;
  }

  input {
    /* clear:both; */
    display: block;
    padding: 8px;
    margin: 8px auto;
    width: 25%;
  }

  label {
    display: block;
    font-size: small;
    text-transform: uppercase;
    margin: 8px;
  }
  
  .email-input {
    width: 60%;
    margin: 10px auto; /* Center the input element */
    border: 1px solid lightgray;
    border-radius: 7px;
    padding: 10px;
    box-sizing: border-box; /* Include padding in width calculation */
  }
  
  button {
    background-color: #17a2b8; /* Info blue color */
    color: white;
    padding: 10px 20px;
    border: 2px solid lightblue;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
  }

  .login-container .login-box .login-body button.form-control {
    background-color: green;
    color: white;
  }
  
  .loader-line {
    width: 200px;
    height: 3px;
    position: relative;
    overflow: hidden;
    background-color: #ddd;
    margin: 100px auto;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.loader-line:before {
    content: "";
    position: absolute;
    left: -50%;
    height: 3px;
    width: 40%;
    background-color: coral;
    -webkit-animation: lineAnim 1s linear infinite;
    -moz-animation: lineAnim 1s linear infinite;
    animation: lineAnim 1s linear infinite;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.hide {
  display: none !important;
}

.alert span {
  display: block;
  font-weight: bold;
}

.alert {
  display: flex;
  flex-direction: column;
  text-shadow: .5px .5px 0 white;
  font-size: 1.2rem;
}

.alert.alert-warning a {
  color:#001010 !important;
}

.alert.alert-danger {
  text-shadow:.5px .5px 0 #001010 !important;
}

.alert.alert-danger a {
  color: #ffffd4 !important;
}

.alert.alert-warning span {
  color:#000 !important;
}

.alert.alert-success {
  color: #000000;
  text-shadow:.5px .5px 0 #f1f1f1 !important;
}

.alert.alert-success small {
  color: #ff0000;
  text-shadow: .5px .5px 0 darkgreen !important;
}

.alert a {
  display: inline;
  max-width: 320px;
  padding: 4px 8px;
}

.register-message {
  color: coral;
  font-size: small;
}

@keyframes lineAnim {
    0% {
        left: -40%;
    }
    50% {
        left: 20%;
        width: 80%;
    }
    100% {
        left: 100%;
        width: 100%;
    }
}