#userBox {
    display: flex;
    align-items: center; /* deixa no meio vertical */
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2000;
}

#userIcon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    background: #fff;
    border: 2px solid #ddd;
    object-fit: cover;
}

#userMenu {
    display: none;
    position: absolute;
    right: 0;
    top: 50px;
    background: white;
    padding: 15px;
    width: 240px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    font-family: Arial, sans-serif;
}

#userMenu h3 {
    margin: 0 0 12px 0;
    font-size: 16px;
    text-align: center;
}

#userMenu form {
    display: flex;
    flex-direction: column;
}

#userMenu input {
    width: 100%;
    box-sizing: border-box;
    padding: 7px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
}

#userMenu input:focus {
    border-color: #007bff;
    outline: none;
}

#userMenu button {
    width: 100%;
    padding: 8px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}

#userMenu button:hover {
    background: #0069d9;
}

.switch {
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
}

.switch a {
    cursor: pointer;
    color: #007bff;
    text-decoration: none;
}

.switch a:hover {
    text-decoration: underline;
}

#registerView {
    display: none;
}