@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Heebo", sans-serif;
}

body {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #161616; 
}
.container {
    width: 100%;
    max-width: 410px;
    background-color: #ffff;
    padding: 15px 25px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 10px #ffff;
}

input {
    margin-bottom: 5px;
}

footer h4 {
    font-size: 15px;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    display: flex;  
    margin-top: 10px;
}

button {
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
}

/* Nav */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

nav button {
    width: calc(100% /2 - 5px);
    color: black;
    font-size: 1.2rem;
    text-align: center;
    height: 45px;
    letter-spacing: 2px;
    border-bottom: 2px  solid;
}

nav button.active {
    border-bottom: 2px  solid #41d323;
    color: #41d323;
    font-weight: 700;
}