@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.background {
    width: 100%;
    height: 100vh;
    background-color: #fff;

    display: flex;
    justify-content: center;
    align-items: center;
}

.body {
    width: 600px;
    height: 600px;
    background-color: #fff;
    border: solid 5px #00A294;

    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

form {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.body h1 {
    font-size: 45px;
    font-weight: 500;
    color: #00A294;
    border-bottom: solid 4px #00A294;   
}

input {
    font-size: 17px;
}

.connect {
    font-size: 25px;
    color: #fff;
    text-decoration: none;
    background-color: #00A294;
    padding: 10px 55px;
    border-radius: 4px;
}

.create {
    color: #00A294;
    text-decoration: none;
    border-bottom: solid 1px #00A294;
}

@media( max-width: 700px ) {
    .body {
        border: 0px;
    }
}
