/* Estrutura geral */
header {
    position: sticky;
    top: 0;
    z-index: 10;
    user-select: none;
    background: transparent;
}

.hero {
    width: 100%;
    display: flex;
    justify-content: center;
}

.account-section {
    width: 70%;
    height: 80vh;
}

.account-content {
    display: flex;
    flex-direction: row;
}

.account-menu {
    width: 20%;
    padding: 20px;
}

.account-title h3 {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: .7;
}

.account-title h2 {
    font-size: 2rem;
    font-weight: 300;
}

.account-menu .menu-item {
    display: block;
    margin: 10px 0;
    font-size: 1rem;
    font-weight: 350;
    transition: .3s ease;
}

.account-menu .menu-item:hover {
    color: var(--dark-brown);
    text-decoration: underline;
}

.account-data-area {
    width: 75%;
    padding: 20px;
}

#account-title {
    font-size: 1.5rem;
    font-weight: 300;
}

.account-data {
    border: solid 1px rgba(0, 0, 0, .3);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    width: 50%;
}

.input-area {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Estilização de labels e inputs */
label {
    font-size: 1rem;
}

.bnt-submit {
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    border: solid 2px;
    background-color: var(--dark-brown);
    border-color: var(--dark-brown);
    color: var(--light-beige);
    transition: .5s all;
}

.bnt-submit:hover {
    font-weight: 600;
    background-color: var(--light-brown);
    border-color: var(--light-brown);
    color: var(--dark-brown);
}

.account-data input,
select {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid rgba(0, 0, 0, .3);
    border-radius: 5px;
    outline: none;
    transition: .3s ease-in-out;
}

input:focus,
select:focus {
    border-color: var(--dark-brown);
}

.hidden {
    display: none;
}