

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300&display=swap');

*{
    margin: 0;
    padding: 0;
    /* box-sizing: border-box; */
    color: white;
    font-family: 'Manrope', sans-serif;
}


.formbody{
    background-color: #101c40;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.registration{
    border: 2px solid white;
    border-radius: 10px;
    padding: 30px;
}

form > input{
    margin: 10px;
    width: 400px;
    border: none;
}

form{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}