*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body{
    font-family:  Helvetica Neue, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #050014;
    background-image: url(https://urieltgc.github.io/images/imgs/img/icons/Logo_dual.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

form{
    padding: 50px;
    display: flex;
    flex-direction: column;
    width: 400px;
    box-shadow: 0 0 20px rgb(255, 255, 255);
    border-radius: 25px;
    background-color: transparent;
}

h2{
    text-align: center;
    font-size: 30px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 25px;
}

label, p{
    font-size: 17px;
    color: #dadada;
    margin-bottom: 10px;
}

input{
    padding: 17px 11px;
    border: 1px solid #00adef;
    border-radius: 25px;
    margin-bottom: 25px;
    background-color: transparent;
    outline: none;
    color: #ffffff;
    font-size: 17px;
}

.btn-1{
    background-color: #00adef;
    font-size: 15px;
    color: #ffffff;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .5s ease;
}

.btn-1:hover{
    transition: all .5s ease;
    background-color: #5c0145;
}

.remember{
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

a{
    color: #575757;
}

@media(max-width:991px){
    body{
        padding: 30px;
    }

    form{
        width:100%;
    }

    .remember{
        flex-direction: column;
    }
}