@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}

body {
    width: 100vw;
    height: 100vh;
    background-color: #ececec;
}


.elements {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form-custom {
    background-color: white;
    padding: 35px;
    border-radius: 15px;
    width: 20%;
    display: flex;
    flex-direction: column;
}
