  @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto',sans-serif;
}   
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url(../images/gfx6.jpg) no-repeat center; 
    background-size: cover;
}
.login-box{
    position: center;
    width: 320px;
    max-height: 80%;
    padding: 10px 10px;
    background-color: rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 0.5); 
    border: 1px solid #ddd;
    border-radius: 20px;
    align-items: center;
}
.login-header{
    display: flex;
    flex-direction: column;
    background: url(../images/logotrn.png) no-repeat center;
    background-size: contain;
    background-position: relative;
    height: 150px;
    margin: 20px 0 50px 0;
}
.login-header header{
    font-family: 'Poppins', sans-serif;
    color: #333;
    font-size: 10px;
    margin-bottom: 5px;
}
.login-header p{
    color: #555;
}
.input-box{
    position: relative;
    width: 100%;
}
.input-box label{
    position: absolute;
    top: 15px;
    left: 15px;
    color: #555;
    transition: .15s ease-in-out;
}
.input-box input{
    width: 100%;
    height: 50px;
}
.input-box .input-field{
    font-size: 1em;
    color: #333;
    padding-left: 15px;
    margin-bottom: 25px;
    border: 1px solid #ddd;
    border-radius: 3px;
    outline: none;
    background-color: rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 0.5);
}
.input-box input[type="password"]{
    margin-bottom: 10px;
}
.input-box .input-field:focus{
    border: 2px solid #FA8C20;
    background-color: rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 1);
}
.input-field:focus ~ label, .input-field:valid ~ label{
    top: -8px;
    left: 12px;
    font-size: 12px;
    color: #333;
    border-radius: 4px;
    background-color: rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 1);
    padding: 0 5px;
}
.input-field:valid ~ label{
    color: #555;
}
.forgot{
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}
section{
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #555;
}
#check{
    margin-right: 10px;
}
section .forgot-link{
    font-weight: 500;
    text-decoration: none;
    color: #7931F5;
}
.input-submit{
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #FFF;
    background: #FA8C20;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.middle-text{
    position: center;
    width: 100%;
    margin: 30px 0;
    justify-content: center;
    align-items: center;

}

hr{
    border: 1px solid #ddd;
}



.social{	
    position: center;
    display: flex;
    gap: 15px;
    border: none;
    background-color: rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 0);
    justify-content: center;


}



button{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
    cursor: pointer;
}
.input-fb{
    justify-content: center;
    width: 70px;
    height: 50px;
    background-color: rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 0);
    border: none;
}
.input-fb img{
    width: 35px;
}

.input-x{
    justify-content: center;
    width: 70px;
    height: 50px;
    background-color: rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 0);
    border: none;
}
.input-x img{
    width: 30px;
}
.input-inst{
    justify-content: center;
    width: 70px;
    height: 50px;
    background-color: rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 0);
    border: none;
}
.input-inst img{
    width: 35px;
}

.input-fb:hover,
.input-x:hover,
.input-inst:hover,
.input-submit:hover{
    opacity: 0.9;
}
.sign-up{
    position: center;
    bottom: -30px;
    right: 0;

}
.sign-up p{
    font-size: 10px;
    color: #333;
}
.sign-up p>a{
    text-decoration: none;
}






.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
  }
  .overlay:target {
    visibility: visible;
    opacity: 1;
  }
  
  .popup {
    margin: 70px auto;
    padding: 20px;
    background: black;
    color: white;
    border-radius: 5px;
    width: 30%;
    position: relative;
    transition: all 5s ease-in-out;
  }
  
  .popup .close {
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
  }