@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,700&display=swap');

@keyframes pan {
    100% {background-position: 15% 50%;}    
}

html, body{
    margin: 0;
    padding: 0;
    background-image: url(../img/layered-steps-haikei.svg);
    background-size: cover;
    background-repeat: no-repeat;
    font-family: 'Poppins', sans-serif !important;
    animation: pan 6s infinite alternate linear;
    -webkit-animation: pan 6s infinite alternate linear;
}

.container{
    min-height: 96vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu{
    position: absolute;
    top: 20px;
    right: 10px;
}

#login{
    background-color: white;
    color: #0072d9;
    padding: 8px 30px;
    text-decoration: none;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    -ms-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    font-size: 13px;
}

#login:hover{
    background-color: #00e2e8;
    color: white;
}

#login svg{
    fill: #0072d9;
    width: 20px;
    transition: 0.4s ease;
}

#login:hover svg{
    fill: #ffff;
    width: 20px;
}

.search-certificated{
    margin: auto;
    width: 100%;
}

.logo{
    margin: auto;
    text-align: center;
    display: grid;
    padding: 30px 0;
    width: 350px;
    margin-top: -100px;
}

h1{
    color: white;
    font-weight: 500;
    text-align: center;
}

p{
    color: white;
    text-align: center;
    margin: 20px 0;
    font-weight: 200;
}

.form-search{
    margin: 40px 0;
}

.form-search input{
    padding: 12px 20px;
}

.form-search input:focus{
    color: #212529;
    background-color: #fff;
    border-color: #fff !important;
    outline: 0;
    box-shadow: 0 0 0 0.05rem rgba(255, 255, 255, 0.25) !important;
}

.form-search button{
    background-color: #0072d9;
    padding:0 50px;
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    -ms-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    color: white;
    border: none;
}

.form-search button:hover{
    background-color: #00e2e8;
}

.form-search button:focus{
    box-shadow: 0 0 0 0.05rem rgba(255, 255, 255, 0.25) !important;
}


/*Login CSS*/

.login{
    max-width: 500px;
    width: 100%;
    margin: auto;
    color: black;
    background-color: white;
    padding: 40px 50px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    box-shadow: #ccccce40 0px 30px 60px -12px, rgba(254, 251, 251, 0.3) 0px 18px 36px -18px;
}

.login h1{
    color: black;
    padding: 20px 0;
}

.form-label{
    color: black;
}

button.btn.btn-primary{
    width: 100% !important;
    margin: 10px 0;
    padding: 12px;
}

#error, #correcto, #error-rol {
    display: none;
}

  @media (max-width:768px){
    .col-4.data-student {
        width: 100%;
    }
    
    
    .col-8.img-cert {
        width: 100%;
    }
    .logo {
        max-width: 275px;
    }
    .modal-content{
    z-index: 9999999999999;
        
    }
  }
