@font-face {
    font-family: 'OGG TRIAL'; /* Ime koje ćete koristiti u CSS-u */
    src: url('../fonts/Ogg-Bold.otf') format('truetype'); /* Putanja do fonta */
    
}


html, body{
    height: 100%;
    padding: 0px;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;

    

}

.form-container{
    margin-top: 40px;
}

.hero-login{
    font-family:'OGG TRIAL', sans-serif; 
   
    height: 100vh;  
    padding-top: 200px;
    background-image: url('../assets/login.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
}

.login-h3{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 100;
    margin-bottom: 0px;
    margin-right: 100%;
    
}
.forma{
    
    margin-right: 100%;
    position: static;
    width: 100%;
    margin-bottom: 10px;
}
.input {
    margin-top: 0px;
    position: relative;
    width: 100%;
    font-size: 16px;
    color: #aaaaaa;
    font-weight: 100;
    border: 1px solid #aaaaaa ; 
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 7px;
    padding-left: 10px;

}

.input:focus {
    outline: none;
}

.input::placeholder {
    color: #aaaaaa;
}
.input{
    color: black;
}
.small-p{
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    margin-bottom: 30px;



}
.login-heading{
    font-weight: 300;
    font-size: 38px;
    line-height: 1;
    margin-top: 0px;
    margin-bottom: 10px;
}


.small-container{  
    position: static;
    padding: 40px;
    width: 450px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
    border-radius: 10px;
    backdrop-filter:blur(20px) brightness(200%);
}
.forma{
    display: block;
    position: relative;
    margin-right: 100%;
    
}

.btn {
    
    min-width: 464px;
    width: 100%;
    height: 2.3em;
    border: 1px solid black;
    
    margin-top: 20px;
    background: white;
    color: black;
    
    border-radius: 0.3em;
    font-size: 18px;
    line-height: 22px;
    font-weight: 300;
    
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
   }
   
   .btn:hover {
    color: black;
   }
   
   .btn:after {
    content: "";
    background: #C7FFBA;
    position: absolute;
    z-index: -1;
    left: -20%;
    right: -20%;
    top: 0;
    bottom: 0;
    transform: skewX(-45deg) scale(0, 1);
    transition: all 0.5s;
   }
   
   .btn:hover:after {
    transform: skewX(-45deg) scale(1, 1);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
   }