@import url('https://fonts.googleapis.com/css2?family=Lato:wght@900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@500&display=swap');


* {
    margin: auto;
}


body{
    background-color: black;
}



img {
    height: 30%;
    width: 96%;
    display: block;
    padding: 2px 2px 2px 2px;
    
    margin-bottom: 10px;
}


.form-container{
    background-color: black;
    border: 1px solid gray;
    height: 650px;
    width: 500px;
    
}

.policy {
    font-family: 'Lato', sans-serif;
    margin-left: 30px;
    
}

hr {
    width: 94%;
    margin-bottom: 10px;
 

}

.restrict {
    font-family: 'Source Code Pro', monospace;
    font-size: 24px;
    text-align: center;
    color: rgb(167, 9, 9);
    
}

p {
    padding-bottom: 8px;
}
form{
    color: white;
    padding-left: 8px;
    margin-top: 30px;
    font-family: 'Source Code Pro', monospace;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.09);
    padding-bottom: 10px;
    padding-top: 10px;

    
}

input {
    border: none;
    border-bottom: 3px solid rgb(167, 9, 9);
    outline: none;
    background: transparent;
    width: 87%;
    color: white;
    padding-bottom: 8px;
    text-align: center;
    margin-left: 20px;
}

@keyframes glowing {
    0% {
      background-color: rgb(172, 5, 5), .1;
    }
    50% {
      background-color: rgb(172, 5, 5, .5);
      box-shadow: 0 0 5px rgb(172, 5, 5);
    }
    100% {
      background-color: rgb(172, 5, 5);
      box-shadow: 0 0 5px rgb(172, 5, 5);
    }
  }


.btn {
    background-color: transparent;
    border: 1px solid red;
    border-radius: 12px;
    color: white;
    width: 80%;
    height: 60px;
    display: block;
    margin-top: 50px;
    font-size: 25px;
    letter-spacing: 2px;
    font-family:  'Lato', sans-serif;
    animation: glowing 1500ms infinite;

}

/*
.btn:hover {
    background-color: rgb(172, 5, 5);
    transition: .3s;
}
*/

@media screen and (max-width: 668px){
    
    
    .form-container{
        margin-left: auto;
        margin-right: auto;
        width: 90%;
        font-size: 16px;
}


    }

    @media screen and (max-width: 420px){
        .form-container{
            margin-left: auto;
            margin-right: auto;
            width: 90%;
            font-size: 16px;
        
    }
    .policy{
        margin-left: auto;
        margin-right: auto;
    }
        
        button{
            height: 80%;
            width: 80%;
            position: relative;
            bottom: 35px;
        }
    }
    
    