@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;700&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background-color: #1B1B32;
    font-family: "Roboto", sans-serif;
    color: #fff;
    text-align: center;
}

ul {
    list-style: none;
}

.main {
    max-width: 400px;
    min-height: 300px;
    margin: 100px auto;
    border: 2px solid white;
    border-radius: 10px;
}

.title {
    margin-bottom: 20px;
}

.description {
    text-align: start;
    width: 90%;
    margin: auto;
    font-weight: 200;
}

.inputs {
    width: 90%;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.user-input {
    height: 3rem;
    width: 45%;
    font-size: 1.5rem;
    font-weight: 200;
    text-indent: 5px;
}
.register {
    display: flex;
    width: 90%;
    margin: auto;
    flex-wrap: wrap;
}

.register-group {
    width: 25%;
    margin: 10px auto;
    display:flex;
    flex-direction: column;
    align-items: center;
    font-weight: 700;
}

.input-register {
    height: 2rem;
    width: 90%;
    text-align: end;
    font-size: 1.2rem;
    font-weight: 200;
}

hr {
    width: 90%;
    margin: 30px auto;
}

.output {
    width: fit-content;
    min-width: 100px;
    max-width: 90%;
    min-height: 4rem;
    padding: 12px 10px;
    margin: 20px auto;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 25px;
    border: 3px solid #fff;
}

#change {
    text-align: start;
}

.hidden {
    display: none;
}

