* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background-image: url("https://as2.ftcdn.net/v2/jpg/05/20/55/67/1000_F_520556713_iwip72HYUoyhRavHEXx87y3nlVv7Z0uX.jpg");
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(100px);
    /* this only works on the url image */
    display: flex;
    font-family: sans-serif;
}


.container {
    margin: auto;
    width: 500px;
    max-width: 90%;
}
.container form {
    width: 100%;
    height: 100%;
    padding: 20px;
    background: hsla(0, 0%, 100%, 0.12);
    border-radius: 50px 50px 50px 1px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.container form h1 {
    text-align: center;
    margin-bottom: 20px;
    color: black;
}

.container form .form-group {
    margin-bottom: 20px;
}

.container form .form-control {
    height: 40px;
    width: 100%;
    background: #f0f0f0;
    border-radius: 4px;
    border: 1px solid #ccc;
    padding: 0 10px;
}

.container form .btn {
    margin-left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 40px;
    border: none;
    outline: none;
    background: blue;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    color: white;
    border-radius: 4px;
    transition: 0.3s;
}

.container form .btn:hover {
    background: green;
}
