* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('https://wallpapercave.com/wp/wp4740876.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.container {
    background-color: aliceblue;
    padding: 30px;
    border: 5px solid black;
}

h1 {
    margin-bottom: 20px;
    text-align: center;
}

.form {
    text-align: center;
}

.form input {
    padding: 8px;
    margin-top: 15px;
}

.forgot-pass {
    margin-top: 15px;
}

.new-pass {
    margin-top: 15px;
    text-align: center;
}

.btn {
    margin-top: 20px;
}