body{
    background-color: #111111;
    font-family: initial;
}

nav{
    position: sticky;
}
#main{

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 89vh;
    
}

form{
    border: 1px solid yellow;
    height: 670px;
    width: 41em;
    background-color: #3d3d3d;
    border-radius: 12px;
}

input{
    margin: 0%;
    height: 45px;
    border-radius: 6px;
    width: 400px;
    border: 0.5px solid yellow;
    background-color: #3c3c3c;
    color: white;
    font-family: initial;
    padding-left: 10px;
}
input:nth-of-type(1){
    margin: 5%;
}

button{
    height: 7%;
    width: 20%;
    border: 0.5px solid black;
    border-radius: 6px;
    margin: 2%;
    border: 0.5px solid yellow;
    background-color: #3c3c3c;
    color: white;
}

button:hover{
    height: 7.5%;
    width: 20.5%;
}

form img{
    border: 1px solid black;
    margin-top: 7%;

}
form a{
    color: #4ac4ff;
    font-size: 12px;
    margin-left: 17rem;
    text-decoration: none;
}

form a:hover{
    font-size: 13px;
    color: #b2b2ff;
}
img{
    border-radius: 15px;
}


@media only screen and (max-width: 667px) and (min-width: 375px){
    form{
        border: 1px solid yellow;
        height: 578px;
        background-color: #3d3d3d;
        border-radius: 12px;
    }
    input{
        height: 32px;
        border-radius: 6px;
        width: 286px;
        border: 0.5px solid yellow;
        background-color: #3c3c3c;
        color: white;
        font-family: initial;
        padding-left: 10px;
    }

    form img{
        border: 1px solid black;
        margin-top: 110px;
    }
    
}