* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    /* background: url("https://source.unsplash.com/1600x900/?landscape"); */
    background: url("https://s3.amazonaws.com/site.w4ti.net.br/images/unsplash-Ed+Shelley.jpg");
    background-size: cover; 
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 420px;
    background: transparent;
    border: 2px solid  rgba(255, 255, 255, .2);
    backdrop-filter: blur(20px);
    border-radius: 10px;
    padding: 30px 40px;
}

h1 {
    font-size: 36px;
    text-align: center;
    color: #fff;
}

.input-container {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
}

.input-container input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    font-size: 16px;
    color: #fff;
    padding: 20px 45px 20px 20px;
}

.input-container input::placeholder {
    color: #fff;
}

.input-container img {
    position: absolute;
    right: 24px;
    top: 20%;
    margin-top: 5px;
}

.input-container a {
    font-size: 10px;
    color: #fff;
    text-decoration: none;    
    padding-left: 66%;
    text-decoration: none;
}

.input-container a:hover {
    text-decoration: underline;
} 

.submit-button {
    width: 100%;
    height: 50px;
    background-color: #6bee76;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 500;
    margin-top: 24px;
    cursor: pointer;
    outline: none;
    font-size: 16px;
}

/* DEIXA A COR DO BOTÃO MAIS ESCURA QUANDO PASSA O MOUSE SOBRE */
.submit-button:hover {
    background-color:  #0ec21d;
}

.register-link {
    text-align: center;
    margin: 5px 0;
}

.register-link p {
    font-size: 14px;
    color: #fff;
    font-weight: 300;
}

.register-link p a {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
}

/* COLOCA LINHA QUANDO PASSA O MOUSE NO CADASTRAR*/
.register-link p a:hover {
    text-decoration: underline;
}