@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
}

body {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: darkslategrey;
}

h2 {
    font-weight: 400;
    color: teal;
}

.container {
    width: 300px;
    background-color: aliceblue;
}

.form-group {
    width: 100%;
    display: flex;
    margin: 20px 5px;
    gap: 10px;
}
.form{
    background-color: aliceblue;
    width: 500px;
    height: 400px;
    
}