@keyframes animContainer {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
* {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-decoration: none;
}
.bold {
    font-weight: 700;
}
.btn-primary {
    width: 100%;
    padding: 12px;
    background-color: #00BF62;
    border-radius: 5px;
    color: #fff;
    border: none;
    text-transform: uppercase;
    font-size: 1rem;
    cursor: pointer;
    transition: 250ms ease-in-out;
}
.btn-primary:hover {
    opacity: .5;
}

body, #form-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
body {
    background-image: linear-gradient(135deg, #ffde59, #feae01);
    padding: 32px;
    height: auto;
    min-height: 100vh;
    box-sizing: border-box;
}
#form-container {
    max-width: 600px;
    width: 100%;
    background-color: #fff;
    border-radius: 25px;
    padding: 25px;
    gap: 32px;
    flex-direction: column;
    animation: animContainer 1s ease-in-out;
}
.text {
    text-align: center;
    font-family: 'Open sans', sans-serif;
}
.logo {
    width: 85px;
    overflow: hidden;
    border-radius: 50%;
    padding: 8px;
    background-color: #ffde59;
}
.logo img {
    width: 100%;
    height: auto;
}
form, .form {
    width: 100%;
    gap: 32px;
    display: flex;
    flex-direction: column;
}
.form {
    gap: 16px;
}
input {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #FEC901;
    width: 100%;
    outline: none;
    padding: 8px 0;
    font-size: 1rem;
}
.sexo-container p, .activity-container p {
    text-align: start;
    margin-bottom: 16px;
}
.sexo-container .options {
    display: flex;
    align-items: center;
    gap: 16px;
}
.sexo-container .sexo {
    gap: 4px;
    display: flex;
    align-items: center;
    font-family: 'Open sans', sans-serif;
}
.sexo-container input {
    width: auto;
}
#activity {
    width: 100%;
    padding: 8px;
    border-radius: 25px;
    border: 1px solid #FEC901;
    background-color: #eee;
    outline: none;
}