@font-face{
    font-family: cairo;
    src:url(../fonts/Cairo-VariableFont_slnt\,wght.ttf)
}
@font-face{
    font-family: "Font Awesome 6 Free";
    src:url(../fonts/fa-brands-400.ttf);
    src:url(../fonts/fa-regular-400.ttf);
    src:url(../fonts/fa-solid-900.ttf);
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background-image: url(../img/background-login.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    font-family: cairo;
}
.intro{
  position: absolute;
  top: 22px;
  width: 100%;
  height: 100%;
  z-index: 1;
  animation: scaling 1s;
}
.logoIntro{
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50% , -50%);
}
.coLogo{
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translate(-50% , 0%);
}
@keyframes scaling {
    0%{
        transform: scale(0);
    }
    100%{
        transform: scale(1);
    }
}
#form{
    display: none;
    max-width: 450px;
    min-width: 370px;
    padding: 20px;
    position: absolute;
    top: 50%;
    left: 51.5%;
    transform: translate(-50% , -50%);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.45);
    box-shadow: 3px 3px 5px rgba(35, 35, 35, 0.2);
    /* transform: scale(0.9); */
}
.image{
    width: 270px;
    margin: 0 auto;
}
label{
    font-size: 18px;
    font-weight: 700;
    color: rgb(72, 72, 72);
    text-shadow: 2px 2px 3px rgba(85, 85, 85, 0.482);
    stroke: aliceblue;
}
#form button{
    width: 50%;
    margin-left: 25%;
    font-size: 18px;
    border: none;
    text-shadow: 2px 2px 3px rgba(52, 52, 52, 0.57);
}
button:hover{
    transform: scale(1.05);
    transition: .3s;
}
.grid{
    display: none;
}
.show{
    display: block;
}
.hide{
    display: none;
}
#Loading{
  display: none;
  border: 5px solid  rgb(244, 136, 3);
  border-radius: 50%;
  border-top: 5px solid #178344 ;
  width: 25px;
  height: 25px;
  margin: 0 auto;
  -webkit-animation: spin 1s linear infinite; /* Safari */
  animation: spin 1s linear infinite;
}


@import url("https://fonts.googleapis.com/css?family=Quicksand&display=swap");

.alert-container {
  position: fixed;
  top: 15px;
  width: 100%;
}

.alert {
  margin: 10px;
  padding: 10px;
  display: none;
  position: relative;
  border-radius: 5px;
  box-shadow: 0 0 15px 5px #ccc;
}

.simple-alert {
  background-color: #ebebeb;
  border-left: 5px solid #6c6c6c;
}

.simple-alert .close {
  border-color: #6c6c6c;
  color: #6c6c6c;
}

.success-alert {
  background-color: #a8f0c6;
  border-left: 5px solid #178344;
}

.success-alert .close {
  border-color: #178344;
  color: #178344;
}

.danger-alert {
  background-color: #f7a7a3;
  border-left: 5px solid #8f130c;
}

.danger-alert .close {
  border-color: #8f130c;
  color: #8f130c;
}

.warning-alert {
  background-color: #ffd48a;
  border-left: 5px solid #8a5700;
}

.warning-alert .close {
  border-color: #8a5700;
  color: #8a5700;
}

footer{
  background-color: #3c3c3c;
  width: 100%;
  position: fixed;
  bottom: 0px;
  text-align: center;
  font-weight: 500;
  color: #ebebeb;
  padding: 2px 0;
}
footer a{
  text-decoration: none;
  display: inline;
  color: rgb(246, 177, 0);
}
footer a:hover{
  color: rgb(0, 157, 0);
}


@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
