*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: Helvetica Neue, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-image: url(https://urieltgc.github.io/image-sorifa/img/bg-form.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

form{
    padding: 40px;
    display: flex;
    flex-direction: column;
    width: 500px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    background-color: transparent;
    backdrop-filter: blur(10px);
    border-radius: 5px;
    background-color:transparent;
}

h2{
    text-align: center;
    font-size: 30px;
    text-transform: uppercase;
    color: #2e2e2e;
    margin-bottom: 15px;
}

label, p{   
    font-size: 17px;
    color: #2e2e2e;
    margin-bottom: 5px;
}

a{   
    font-size: 17px;
    color: #00adef;
    margin-bottom: 10px;
    text-decoration: none;
}

input {
    padding: 10px 10px;
    border: 1px solid #00adef;
    border-radius: 25px;
    margin-bottom: 10px;
    background-color: transparent;
    outline: none;
    color: #000000;
    font-size: 17px;
}

.btn-1 {
    background-color: #00adef;
    font-size: 15px;
    font-weight: 600;
    color: #ffff;
    text-transform: uppercase;
    cursor: pointer;
    transition: all ease 0.5s;
}

.btn-1:hover{
    background-color: #2fc4ff;
    color: #000000;
    transition: all ease 0.5s;
}

.remember{
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

@media(max-width:991px){
    body{
        padding: 30px;
    }

    form{
        width: 100%;
    }
}