*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body{
    background: url("https://picsum.photos/1600/900?random=1");
    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;
    text-shadow: rgba(0, 0, 0, 1) 0px 5px 15px;
}

.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;
    text-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px;
}

.input-container input::placeholder{
    color: #fff;
}

.input-container img{
    position: absolute;
    right: 24px;
    top: 20%;
    margin-top: 5px;
}

.input-container a{
    font-size: 16px;
    margin: 20px 0;
    margin-top: 50px;
    color: #fff;
    text-decoration: none;
    text-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px;
}

.input-container a:hover{
    text-decoration: underline;
}

.submit-button{
    width: 100%;
    height: 50px;
    background-color: #027ac0;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 500;
    margin-top: 24px;
    cursor: pointer;
    outline: none;
    font-size: 20px;
}

.submit-button:hover{
    background-color: #1b97e0;
}

.register-link{
    text-align: center;
    margin: 20px 0;
}

.register-link p{
    font-size: 16px;
    color: #fff;
    font-weight: 300;
    text-shadow: rgba(0, 0, 0, 1) 0px 5px 15px;
}

.register-link p a{
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.register-link p a:hover{
    text-decoration: underline;
}