@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background-image: linear-gradient(to top, #fdcbf1 0%, #fdcbf1 1%, #e6dee9 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background-color: rgba(255, 255, 255, 0.7);
    width: 550px;
}

form {
    display: flex;
    flex-direction: column;
}

form > input {
    padding: 10px;
    outline: none;
    border-radius: 5px 5px 0 0;
    border: none;
    background-color: transparent;
    border-bottom: 1px solid;
    font-size: 17px;
    margin: 10px;
    width: 400px;
}

form > button {
    padding: 10px;
    font-size: 17px;
    border-radius: 5px;
    border: none;
    outline: none;
    background-color: #ee44c7;
    color: rgb(255, 255, 255);
}