@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, #6a85b6 0%, #bac8e0 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;
    padding: 30px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

form {
    display: flex;
    flex-direction: column;
    width: 500px;
    margin-top: 10px;
}

.input {
    width: 100%;
    position: relative;
}

.input > input {
    font-size: 18px;
    padding: 5px 10px;
    outline: none;
    width: 95%;
}

.input > a {
    position: absolute;
    right: 15px;
    bottom: 5px;
    font-size: 22px;
}

form > button {
    font-size: 17px;
    margin-top: 5px;
    padding: 8px;
    border: none;
    background-color: #6a85b6;
    color: #fff;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.result {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 20px;
}