*{
    margin: 0;
    padding: 0;
    font-family: 'Times New Roman', Times, serif;
}
.container{
    width: 100%;
    height: 100%;
    background: url('../../assets/media/back-image.jpg');
    position: absolute;
    color: #00FFFF;
    text-align: center;
}
.content{
    top: 150px;
    position: relative;
    padding: 10px;
    background-color: black;
    margin: 0 auto;
    width: 400px;
    height: auto;
}
.content form{
    display: flex;
    flex-direction: column;
}
p{
    color: white;
}
input{
    margin-top: 10px;
    border-radius: 1px;
    border: 1px solid #191970;
    color: #00FFFF;
    background: transparent;
}
::-webkit-input-placeholder{
    text-shadow: none;
}
#submit{
    cursor: pointer;

}
#submit:hover{
    box-shadow: 2px 2px 10px 1px #191970;
    text-shadow: 0 0 4px #fff;
}
@media screen and (max-width: 600px) {
    .content{
        width: auto;
    }
}
